Azure / azure-cosmosdb-java

Java Async SDK for SQL API of Azure Cosmos DB
MIT License
54 stars 61 forks source link

Update Document Resource getTimestamp for last modified date/time #35

Closed Ramji-S closed 6 years ago

Ramji-S commented 6 years ago

Fixing Document getTimestamp() to pass in a 13 digit timestamp long value. Currently this method returns a date from 1970 and the resolution is to pass Date(millisec.longValue() * 1000) instead of Date(millisec.longValue()). This fixes https://github.com/Azure/azure-cosmosdb-java/issues/32

moderakh commented 6 years ago

@Ramji-S Thanks for the PR. can you please also add a simple unit test around this?

moderakh commented 6 years ago

Thank you @Ramji-S

Ramji-S commented 6 years ago

Thanks much for the merge @moderakh 😄