Skip to content

Commit 43ce528

Browse files
committed
2 parents 5a40273 + ece877e commit 43ce528

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ steps:
4848
name: tests_config_properties
4949
displayName: 'download config.properties'
5050
inputs:
51-
secureFile: 'java-php.config.properties'
51+
secureFile: 'java.config.properties'
5252

5353

5454
- script: |

src/main/java/com/docusign/HttpsConnectWebhookhMacValidation.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,9 @@ public static boolean HashIsValid(String secret, byte[] payload, String verify)
4343
return isEqual;
4444
}
4545
//ds-snippet-end:Connect1Step1
46-
public static void main(String[] args) {
4746

47+
public static void main(String[] args)
48+
{
4849
LOGGER.info("DocuSign HMAC Tester");
4950
try {
5051
Boolean response = HttpsConnectWebhookhMacValidation.HashIsValid("{DocuSign HMAC private key}",

src/main/java/com/docusign/controller/eSignature/services/ListEnvelopesServices.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public final class ListEnvelopesServices {
1313
public static EnvelopesInformation listEnvelopes(EnvelopesApi envelopesApi, String accountId) throws ApiException {
1414
EnvelopesApi.ListStatusChangesOptions options = envelopesApi.new ListStatusChangesOptions();
1515
LocalDate date = LocalDate.now().minusDays(FROM_DATE_OFFSET_DAYS);
16-
options.setFromDate(DateUtils.DATE_WITH_SLASH.format(date));
16+
options.setFromDate(DateUtils.DATE_WITH_LINES.format(date));
1717
return envelopesApi.listStatusChanges(accountId, options);
1818
}
1919
}

0 commit comments

Comments
 (0)