Skip to content

Commit

Permalink
Allow log origin "proxy" (#4520)
Browse files Browse the repository at this point in the history
With runtimeverification/haskell-backend#3974,
`kore-rpc-booster` increments execution depth and emits a rewrite trace
in the scenario of pruning all but one branches in a branching execute
response. The trace has origin `"proxy"`, because that's where the step
is effectively taken. This PR makes sure `pyk` is ready to handle this.

Co-authored-by: rv-jenkins <[email protected]>
  • Loading branch information
geo2a and rv-jenkins authored Jul 13, 2024
1 parent 29cabd1 commit 5e08b77
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pyk/src/pyk/kore/rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -622,6 +622,7 @@ def to_dict(self) -> dict[str, Any]:
class LogOrigin(str, Enum):
KORE_RPC = 'kore-rpc'
BOOSTER = 'booster'
PROXY = 'proxy'
LLVM = 'llvm'


Expand Down

0 comments on commit 5e08b77

Please sign in to comment.