pabloem commented on a change in pull request #12581:
URL: https://github.com/apache/beam/pull/12581#discussion_r472482298
##########
File path:
sdks/java/io/azure/src/main/java/org/apache/beam/sdk/io/azure/blobstore/AzureBlobStoreFileSystem.java
##########
@@ -68,6 +68,8 @@
private static final ImmutableSet<String> NON_READ_SEEK_EFFICIENT_ENCODINGS =
ImmutableSet.of("gzip");
+ private static final int expiryTime = 86400000;
Review comment:
Constants usually have uppercase names, like so:
```suggestion
private static final int DEFAULT_EXPIRY_TIME = 86400000;
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]