Skip to content
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

Merged
merged 3 commits into from
Apr 5, 2018

Conversation

jameinel
Copy link
Member

@jameinel jameinel commented Apr 4, 2018

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.

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.
@jameinel
Copy link
Member Author

jameinel commented Apr 4, 2018

Copy link
Contributor

@howbazaar howbazaar left a 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 {
Copy link
Contributor

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?
Copy link
Contributor

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.

jameinel added 2 commits April 5, 2018 11:38
Promote the Clock to be mandatory, cleanup a code comment.
@jameinel
Copy link
Member Author

jameinel commented Apr 5, 2018

$$merge$$

@jujubot jujubot merged commit fbc61b9 into juju:master Apr 5, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants