Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/java/com/cloudconvert/dto/Operation.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public enum Operation {

EXPORT_URL("export/url"),
EXPORT_S3("export/s3"),
EXPORT_AZURE_BLOB("export/azure-blob"),
EXPORT_AZURE_BLOB("export/azure/blob"),
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello @josiasmontag, I added this fix for the Azure blob export,
Now the test is failing for some weird reason unrelated to this, an operation named "pdf/split".
Would you have any clue about that?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The test failing is not related to this PR

EXPORT_GOOGLE_CLOUD_STORAGE("export/google-cloud-storage"),
EXPORT_OPENSTACK("export/openstack"),
EXPORT_SFTP("export/sftp");
Expand All @@ -41,4 +41,4 @@ public enum Operation {
Operation(final String label) {
this.label = label;
}
}
}
Loading