-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
feat(proof-data-handler): exclude batches without object file in GCS #2980
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
-- There were manually added tee_proof_generation_details entries with status 'permanently_ignore'. | ||
|
||
UPDATE tee_proof_generation_details SET status = 'permanently_ignored' WHERE status = 'permanently_ignore'; | ||
|
||
-- Entries with the status 'unpicked' were not used at all after the migration to the logic | ||
-- introduced in https://github.com/matter-labs/zksync-era/pull/3017. This was overlooked. | ||
|
||
DELETE FROM tee_proof_generation_details WHERE status = 'unpicked'; |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,12 +24,12 @@ axum.workspace = true | |
tokio.workspace = true | ||
tower-http = { workspace = true, features = ["compression-zstd", "decompression-zstd"] } | ||
tracing.workspace = true | ||
chrono.workspace = true | ||
|
||
[dev-dependencies] | ||
hyper.workspace = true | ||
chrono.workspace = true | ||
zksync_multivm.workspace = true | ||
serde_json.workspace = true | ||
tower.workspace = true | ||
zksync_basic_types.workspace = true | ||
zksync_contracts.workspace = true | ||
zksync_basic_types.workspace = true | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nit: You don't usually need |
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.
JFYI: this is an artifact that I'm gonna revert.