Skip to content

Commit

Permalink
fix(backend): deleteIsuでトランザクションを受け渡すようにした
Browse files Browse the repository at this point in the history
  • Loading branch information
oribe1115 committed Jul 26, 2021
1 parent a97ac53 commit ebc772d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/go/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,7 @@ func deleteIsu(c echo.Context) error {
}

// JIAにisuのdeactivateをリクエスト
targetURL := getJIAServiceURL(nil) + "/api/deactivate"
targetURL := getJIAServiceURL(tx) + "/api/deactivate"
body := JIAServiceRequest{isuConditionPublicAddress, isuConditionPublicPort, jiaIsuUUID}
bodyJSON, err := json.Marshal(body)
if err != nil {
Expand Down

0 comments on commit ebc772d

Please sign in to comment.