-
Notifications
You must be signed in to change notification settings - Fork 21
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
When observing transactions include the run Duration. #40
Conversation
This lets us see both what the transactions are, as well as how long they took to run, and whether or not they errored out. I switched from a func taking particular arguments to a func taking a Struct so that if we come up with more parameters we want to pass, we can do so without breaking the API.
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.
Looks good. I'd just make the clock required.
@@ -159,6 +176,10 @@ func NewRunner(params RunnerParams) Runner { | |||
txnRunner.testHooks = make(chan ([]TestHook), 1) | |||
txnRunner.testHooks <- nil | |||
txnRunner.newRunner = txnRunner.newRunnerImpl | |||
txnRunner.clock = params.Clock | |||
if txnRunner.clock == nil { |
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.
This should be a required param.
txn.go
Outdated
@@ -226,10 +247,17 @@ func (tr *transactionRunner) RunTransaction(ops []txn.Op) error { | |||
logger.Infof("transaction 'before' hook end") | |||
} | |||
} | |||
// TODO: Should this be a clock instead? |
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.
Yes it is, can remove this todo now.
Promote the Clock to be mandatory, cleanup a code comment.
|
This lets us see both what the transactions are, as well as how long
they took to run, and whether or not they errored out.
I switched from a func taking particular arguments to a func taking a
Struct so that if we come up with more parameters we want to pass, we
can do so without breaking the API.