Skip to content

Commit 9398da1

Browse files
authored
Merge pull request #125 from docusign/budfix/fix-for-playwright-tests
Added a fix for playwright test
2 parents 1aba0b5 + b3d68f4 commit 9398da1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/docusign/App.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ private static void initFileSystem() {
7373
try {
7474
FileSystems.newFileSystem(new URI(""), Collections.emptyMap());
7575
log.info("FileSystem initialized successfully");
76-
} catch (FileSystemAlreadyExistsException | URISyntaxException | IOException e) {
76+
} catch (Exception e) {
7777
if (e instanceof FileSystemAlreadyExistsException) {
7878
log.info("FileSystem is already initialized");
7979
} else {

0 commit comments

Comments
 (0)