Skip to content

Commit

Permalink
make renew asynchronous
Browse files Browse the repository at this point in the history
  • Loading branch information
kthare10 committed Jul 11, 2024
1 parent 0cf6c75 commit 31e4394
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fabric_cf/actor/core/kernel/slice_state_machine.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,8 @@ class SliceStateMachine:
MODIFY = SliceOperation(SliceCommand.Modify, SliceState.StableOK, SliceState.StableError, SliceState.Configuring,
SliceState.AllocatedOK, SliceState.AllocatedError)

RENEW = SliceOperation(SliceCommand.Renew, SliceState.StableOK, SliceState.StableError, SliceState.Configuring,
SliceState.AllocatedOK, SliceState.AllocatedError)
RENEW = SliceOperation(SliceCommand.Renew, SliceState.StableOK, SliceState.StableError, SliceState.AllocatedOK,
SliceState.ModifyOK, SliceState.ModifyError, SliceState.AllocatedError)

MODIFY_ACCEPT = SliceOperation(SliceCommand.ModifyAccept, SliceState.ModifyOK, SliceState.ModifyError,
SliceState.Modifying, SliceState.AllocatedOK, SliceState.AllocatedError)
Expand Down

0 comments on commit 31e4394

Please sign in to comment.