#1427 - EMR - Return start time of first step
This commit is contained in:
parent
954004669a
commit
7205ab7785
3 changed files with 9 additions and 2 deletions
|
|
@ -752,7 +752,9 @@ def test_steps():
|
|||
# StateChangeReason
|
||||
x["Status"]["Timeline"]["CreationDateTime"].should.be.a("datetime.datetime")
|
||||
# x['Status']['Timeline']['EndDateTime'].should.be.a('datetime.datetime')
|
||||
# x['Status']['Timeline']['StartDateTime'].should.be.a('datetime.datetime')
|
||||
# Only the first step will have started - we don't know anything about when it finishes, so the second step never starts
|
||||
if x["Name"] == "My wordcount example":
|
||||
x["Status"]["Timeline"]["StartDateTime"].should.be.a("datetime.datetime")
|
||||
|
||||
x = client.describe_step(ClusterId=cluster_id, StepId=x["Id"])["Step"]
|
||||
x["ActionOnFailure"].should.equal("TERMINATE_CLUSTER")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue