Skip to content

Commit

Permalink
Fix reference link in @doc
Browse files Browse the repository at this point in the history
  • Loading branch information
akirakw committed Aug 19, 2024
1 parent 3058eb2 commit f867ea9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public enum CoreServiceCode implements DiagnosticCode {
value = "operation was requested in illegal or inappropriate time.",
reference = {
"Issue: \"SCD-00102: handshake operation is required to establish sessions\""
+ "@https://github.com/project-tsurugi/tsurugidb/blob/doc-client-error-code/docs/upgrade-guide.md"
+ "upgrade-guide.md"
+ "#handshake-required",
})
ILLEGAL_STATE(1_02, Diagnostics.Code.ILLEGAL_STATE),
Expand Down Expand Up @@ -123,7 +123,7 @@ public enum CoreServiceCode implements DiagnosticCode {
value = "the destination service was not found.",
reference = {
"Issue: \"SCD-00402: unsupported service message\""
+ "@https://github.com/project-tsurugi/tsurugidb/blob/doc-client-error-code/docs/upgrade-guide.md"
+ "upgrade-guide.md"
+ "#service-not-registered",
})
SERVICE_UNAVAILABLE(4_02, Diagnostics.Code.SERVICE_UNAVAILABLE),
Expand All @@ -141,7 +141,7 @@ public enum CoreServiceCode implements DiagnosticCode {
value = "the service received a request message with invalid payload.",
reference = {
"Issue: \"SCD-00501: inconsistent service message version\""
+ "@https://github.com/project-tsurugi/tsurugidb/blob/doc-client-error-code/docs/upgrade-guide.md"
+ "upgrade-guide.md"
+ "#inconsistent-message",
})
INVALID_REQUEST(5_01, Diagnostics.Code.INVALID_REQUEST),
Expand Down

0 comments on commit f867ea9

Please sign in to comment.