You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a recipe is published in Data Brew, the Create Date of the Latest Working Version appears to be set to the most recent Publish Date based on results observed in Boto3 1.34.x executions in AWS Data Brew.
Should be able to correct this by adding the following in FakeRecipe Class:
defpublish(self, description: Optional[str] =None) ->None:
self.latest_published=self.latest_workingself.latest_working=deepcopy(self.latest_working)
self.latest_published.publish(description)
delself.versions[self.latest_working.version]
self.versions[self.latest_published.version] =self.latest_publishedself.latest_working.version=self.latest_published.version+0.1# Update the Latest working Creation Date to the previous Publish Timeself.latest_working.created_time=self.latest_published.published_dateself.versions[self.latest_working.version] =self.latest_working
The text was updated successfully, but these errors were encountered:
When a recipe is published in Data Brew, the Create Date of the Latest Working Version appears to be set to the most recent Publish Date based on results observed in Boto3 1.34.x executions in AWS Data Brew.
Line 480
Should be able to correct this by adding the following in FakeRecipe Class:
The text was updated successfully, but these errors were encountered: