Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(appengine): remove older region tag #3965

Merged
merged 4 commits into from
Feb 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions appengine/building-an-app/update/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,10 @@ const path = require('path');

const app = express();

// [START enable_parser]
// [START gae_enable_parser]
// This middleware is available in Express v4.16.0 onwards
app.use(express.urlencoded({extended: true}));
// [END gae_enable_parser]
// [END enable_parser]

app.get('/', (req, res) => {
res.send('Hello from App Engine!');
Expand Down
2 changes: 1 addition & 1 deletion appengine/building-an-app/update/test/server.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ describe('gae_add_display_form add_display_form', () => {
});
});

describe('gae_add_post_handler add_post_handler gae_enable_parser enable_parser', () => {
describe('gae_add_post_handler add_post_handler gae_enable_parser', () => {
it('should record message', async () => {
await requestObj
.post('/submit', {
Expand Down
Loading