Skip to content

Commit 63c4490

Browse files
committed
Fix rebase issue
1 parent 0137804 commit 63c4490

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

chasm/context.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ type Context interface {
5050
goContext() context.Context
5151
}
5252

53-
<<<<<<< HEAD
5453
type ExecutionInfo struct {
5554
// StateTransitionCount is the number of create/update transactions in the history of this execution.
5655
StateTransitionCount int64
@@ -60,10 +59,10 @@ type ExecutionInfo struct {
6059
// An execution is closed when its root component reaches a terminal state in its lifecycle.
6160
// If the component is still running (not yet closed), it returns a zero time.Time value.
6261
CloseTime time.Time
63-
=======
62+
}
63+
6464
type EndpointRegistry interface {
6565
GetByName(ctx context.Context, namespaceID namespace.ID, endpointName string) (*persistencespb.NexusEndpointEntry, error)
66-
>>>>>>> d1b6be7d00 (Nexus ScheduleCommand in CHASM (#9278))
6766
}
6867

6968
type MutableContext interface {

chasm/context_mock.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ type MockContext struct {
2626
HandleExecutionCloseTime func() time.Time
2727
HandleStateTransitionCount func() int64
2828
HandleExecutionInfo func() ExecutionInfo
29-
HandleMetricsHandler func() metrics.Handler
3029
HandleLibrary func(name string) (Library, bool)
3130
HandleNamespaceEntry func() *namespace.Namespace
3231
HandleEndpointByName func(string) (*persistencespb.NexusEndpointEntry, error)

0 commit comments

Comments
 (0)