Draft
Conversation
LocalStack Community integration with Pro 2 files ± 0 2 suites ±0 22m 15s ⏱️ - 1h 34m 57s Results for commit dfac85d. ± Comparison against base commit 056da83. This pull request removes 3432 tests.♻️ This comment has been updated with latest results. |
Test Results (amd64) - Integration, Bootstrap 5 files 5 suites 39m 10s ⏱️ Results for commit dfac85d. ♻️ This comment has been updated with latest results. |
17616f5 to
91e9ec5
Compare
c4aece0 to
dfac85d
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
As I tried to get an Avro schema from
SFNStore, I came across a few issues:typing.Anyas type hints;deque;Executionclass having anExecutionWorkeras an attribute. The general rule is to try to separate the runtime state from the state that needs to be persisted. Furthermore,ExecutionWorkeris generally harder to serialize since it holdsthreadingprimitives.Changes
typing.Anyannotations;propertyof the class;listinstead ofdeque. We are going from O(1) to O(n) for theget_taskoperation;exec_commattribute from theExecutor. An executor now needs to register a worker when it starts it, to be able to retrieve it later with the execution ARN.Tests
Related