-
Notifications
You must be signed in to change notification settings - Fork 151
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
Fix bug report request IDs being reset when using multiple KoreClient
s
#4480
Merged
Merged
Changes from 3 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
b582f14
Use hash of request contents, _req_id counter, and client ID to gener…
nwatson22 6eedcbc
Remove unneeded components from uid calculation
nwatson22 3699701
Merge branch 'develop' into noah/bug-report-fix
nwatson22 c4f5058
Change file structure of bug report, don't use hashing
nwatson22 d88c70e
Merge branch 'noah/bug-report-fix' of https://github.com/runtimeverif…
nwatson22 1a136a6
Remove debug code
nwatson22 bb8ef9f
Merge branch 'develop' into noah/bug-report-fix
nwatson22 1d6a8ed
Merge branch 'develop' into noah/bug-report-fix
nwatson22 25398bb
Move bug report generation to the Transport level
nwatson22 cc401c9
Fix test
nwatson22 6c16110
Rename methods
nwatson22 067319b
Make description private
nwatson22 f64c1fd
Merge branch 'develop' into noah/bug-report-fix
nwatson22 ab53d2e
Merge branch 'develop' into noah/bug-report-fix
rv-jenkins e00a875
Update pyk/src/pyk/kore/rpc.py
nwatson22 8e3dd95
explicitly list args for Transport, warn when passing bug report ID w…
nwatson22 6a3bc38
Merge branch 'noah/bug-report-fix' of https://github.com/runtimeverif…
nwatson22 fb6baf7
Merge branch 'develop' into noah/bug-report-fix
nwatson22 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
There are no files selected for viewing
This file contains 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.
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.
Does this mean that the requests will no longer be linear? If they are not, is there any way of establishing the correct order in the bug reports?
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.
My understanding is that the order is determined by the ordering of the commands files, which are bash scripts that refer to the request files, and those are still named using a counter. This would only be changing the names of the request files (and the IDs of the requests referred to in the requests themselves)
See:
k/pyk/src/pyk/utils.py
Line 541 in 0cfdcda