Skip to content

Commit

Permalink
chore(appengine): remove older region tag (#3965)
Browse files Browse the repository at this point in the history
* chore(appengine): remove older region tag

* chore(appengine): remove older region tag from tests

---------

Co-authored-by: Jennifer Davis <[email protected]>
Co-authored-by: Katie McLaughlin <[email protected]>
  • Loading branch information
3 people authored Feb 6, 2025
1 parent df2a9ed commit e1a235d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
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

0 comments on commit e1a235d

Please sign in to comment.