Skip to content

Commit

Permalink
Fix build errors v/4.1 (#329)
Browse files Browse the repository at this point in the history
```
1:46:13 AM: [22:46:13.963] WARN (asciidoctor): unterminated listing block
1:46:13 AM:     file: docs/modules/ROOT/pages/migration-guides.adoc:1375
1:46:13 AM:     source: https://github.com/hazelcast/imdg-docs (branch: v/4.1 | start path: docs)
1:46:13 AM: [22:46:13.964] WARN (asciidoctor): unterminated listing block
1:46:13 AM:     file: docs/modules/ROOT/pages/migration-guides.adoc:1393
1:46:13 AM:     source: https://github.com/hazelcast/imdg-docs (branch: v/4.1 | start path: docs)
1:46:13 AM: [22:46:13.965] ERROR (asciidoctor): dropping cells from incomplete row detected end of table
1:46:13 AM:     file: docs/modules/ROOT/pages/migration-guides.adoc:1393
1:46:13 AM:     source: https://github.com/hazelcast/imdg-docs (branch: v/4.1 | start path: docs)
1:46:16 AM: [22:46:16.461] WARN (asciidoctor): skipping reference to missing attribute: mc-docs
1:46:16 AM:     file: docs/modules/installation/pages/rolling-upgrades.adoc
1:46:16 AM:     source: https://github.com/hazelcast/imdg-docs (branch: v/4.1 | start path: docs)
```


https://app.netlify.com/sites/nifty-wozniak-71a44b/deploys/66da336127514d0008a18c9c#L187
  • Loading branch information
fantkolja authored Sep 6, 2024
1 parent a4fd5bf commit 5f2d8a3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.DS_Store
/node_modules/
/test/
package-lock.json
package-lock.json
.idea
1 change: 1 addition & 0 deletions docs/antora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ asciidoc:
page-toclevels: 1
page-ghissue: https://github.com/hazelcast/imdg-docs/issues/new
javadocBaseUrl: https://docs.hazelcast.org/docs/
mc-docs: https://docs.hazelcast.org/docs/management-center/latest/manual/html/
nav:
- modules/ROOT/nav.adoc
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/migration-guides.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1380,7 +1380,7 @@ public boolean onLogin() throws LoginException {
CredentialsCallback cc = new CredentialsCallback();
try {
callbackHandler.handle(new Callback[] { cc });
} catch (IOException | UnsupportedCallbackException e) {
} catch (IOException \| UnsupportedCallbackException e) {
throw new FailedLoginException("Unable to retrieve credentials. " + e.getMessage());
}
Credentials creds = cc.getCredentials();
Expand Down

0 comments on commit 5f2d8a3

Please sign in to comment.