-
Notifications
You must be signed in to change notification settings - Fork 125
feat: allocating by function executor #1334
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
756627a
to
f501d85
Compare
return Ok(StateMachineMetadata { | ||
db_version: 0, | ||
db_version: SERVER_DB_VERSION, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was a gap before. We would start any DB on version zero without migrating.
fyi, test failed:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approving but please fix the test failure unless it's a known issue. Seems like it's not.
ecf758d
to
2e20674
Compare
bda8c05
to
7432133
Compare
Context
As part of moving responsibilities from the executors to the server, we need to make the server aware of function executors.
What
This PR replaces the
allocations_by_fn
indexes byfunction_executors_by_executor
andallocations_by_executor
.Details:
Testing
Contribution Checklist
make fmt
in the package directory.make fmt
inserver/
.