Skip to content

Commit 10fc888

Browse files
committed
disable fesr
1 parent cb53a43 commit 10fc888

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

HTML5Module/webapp/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
66
<title>HTML5 User API for Cloud Foundry</title>
77
<meta name="sap.allowlistService" content="/allowlist/service" />
8+
<!--
89
<meta name="sap-ui-fesr" content="/fesr" />
10+
-->
911
<script
1012
id="sap-ui-bootstrap"
1113
src="https://ui5.sap.com/1.120/resources/sap-ui-core.js"

mta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ID: html5userapi
22
_schema-version: "2.1"
3-
version: 0.4.2
3+
version: 0.4.3
44
parameters:
55
enable-parallel-deployments: true
66

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "html5userapi-cf",
3-
"version": "0.4.2",
3+
"version": "0.4.3",
44
"description": "HTML5 User API for Cloud Foundry",
55
"repository": "https://github.com/gregorwolf/HTML5UserAPIforCF.git ",
66
"license": "Apache 2.0",

srv/express.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// load modules
22
const express = require("express");
3-
const fesr = require("@sap/fesr-to-otel-js");
3+
// const fesr = require("@sap/fesr-to-otel-js");
44

55
// For authentication test
66
const passport = require("passport");
@@ -31,7 +31,7 @@ function getJWT(req) {
3131
(async () => {
3232
// create new app
3333
const app = express();
34-
fesr.registerFesrEndpoint(app);
34+
// fesr.registerFesrEndpoint(app);
3535
// Authentication using JWT
3636
await app.use(passport.initialize());
3737
await app.use(passport.authenticate("JWT", { session: false }));

0 commit comments

Comments
 (0)