Skip to content

Commit b17e0db

Browse files
authored
Rename the /database/procedure route to be unstable (#3723)
# Description of Changes Title. Closes #3644 . # API and ABI breaking changes Moves an unreleased HTTP route to make it explicitly unstable. # Expected complexity level and risk 1 # Testing <!-- Describe any testing you've done, and any testing you'd like your reviewers to do, so that you're confident that all the changes work as expected! --> - [x] Used `curl` to hit the previous, not-unstable-looking route, got a 404. - [x] Used `curl` to hit the new, obviously-unstable route, got a proper response.
1 parent 8552048 commit b17e0db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/client-api/src/routes/database.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1237,7 +1237,7 @@ where
12371237
.route("/identity", self.identity_get)
12381238
.route("/subscribe", self.subscribe_get)
12391239
.route("/call/:reducer", self.call_reducer_post)
1240-
.route("/procedure/:procedure", self.call_procedure_post)
1240+
.route("/unstable/procedure/:procedure", self.call_procedure_post)
12411241
.route("/schema", self.schema_get)
12421242
.route("/logs", self.logs_get)
12431243
.route("/sql", self.sql_post)

0 commit comments

Comments
 (0)