-
Notifications
You must be signed in to change notification settings - Fork 400
feat: CON-1639 HTTPS outcalls pay-as-you-go and dark launch budget trackers #10519
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
Open
eichhorl
wants to merge
33
commits into
master
Choose a base branch
from
eichhorl/dark-launch-tracker
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
4701dfd
dark launch tracker
eichhorl 7d7cd45
Automatically updated Cargo*.lock
0ec21dc
fix
eichhorl fe96484
Merge branch 'eichhorl/dark-launch-tracker' of github.com:dfinity/ic …
eichhorl cf87d44
fix
eichhorl 4923d68
charge for gossip
eichhorl abe2b56
t
eichhorl 77e6485
clean
eichhorl 937a9bc
schedule
eichhorl e265c2f
add
eichhorl dd28e15
comment
eichhorl a26a9c3
Merge branch 'master' into eichhorl/dark-launch-tracker
eichhorl 3631e42
review
eichhorl 37abaff
fix
eichhorl 2930059
move truncation
eichhorl ed19c45
Automatically updated Cargo*.lock
cc6be29
import
eichhorl 51d64d4
Merge branch 'eichhorl/dark-launch-tracker' of github.com:dfinity/ic …
eichhorl 2e7b712
Automatically updated Cargo*.lock
d8ec86a
count_bytes
eichhorl 1d5d749
Merge branch 'eichhorl/dark-launch-tracker' of github.com:dfinity/ic …
eichhorl 5ed23a8
consistent CanisterReject
eichhorl 5132054
remove unneeded check
eichhorl 35c202a
MAXIMUM_CANISTER_HTTP_ERROR_MESSAGE_BYTES
eichhorl b8df347
rm diverged/disagreed
eichhorl a91a45b
comment
eichhorl 591ecec
error_reported
eichhorl 4773807
is_gossiping
eichhorl 6d32da5
constant
eichhorl 22c5465
rm for now
eichhorl ebd2a9b
extract helper
eichhorl 608b767
comment
eichhorl 81c0f81
metric
eichhorl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
I don't think this crosses the boundary of 1024 chars.
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.
Why not? There is an assert just below saying that it is
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.
What I mean is that the emoji is encoded using 4 bytes and the byte limit of 1024 bytes is an integer multiple of that so we don't exercise the case of the emoji crossing the byte limit (in this case truncating to exactly 1024 bytes would cut the emoji encoding and the blob won't be a valid string anymore).