8000 Removed BaseMiddleware#stringRepresentation. Let's see if this breaks… · johnrees/arangodb@bfb3d0b · GitHub
[go: up one dir, main page]

Skip to content

Commit bfb3d0b

Browse files
committed
Removed BaseMiddleware#stringRepresentation. Let's see if this breaks stuff.
1 parent 09d5bdc commit bfb3d0b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

js/server/modules/org/arangodb/foxx/base_middleware.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,6 @@ function BaseMiddleware() {
458458
};
459459

460460
return {
461-
stringRepresentation: String(middleware),
462461
functionRepresentation: middleware
463462
};
464463
}

js/server/modules/org/arangodb/foxx/controller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ function Controller(context, options) {
333333
{
334334
url: { match: "/*" },
335335
action: {
336-
callback: baseMiddleware.stringRepresentation,
336+
callback: baseMiddleware.functionRepresentation,
337337
options: {
338338
name: context.name,
339339
version: context.version,

0 commit comments

Comments
 (0)
0