Skip to content

Commit e2aa152

Browse files
graysidebradmiro
authored andcommitted
run/broken: exclude "improved" route from run_broken_service (#1640)
* run/broken: exclude "improved" route from run_broken_service * Whitespace checkstyle blind fix. * fix styling
1 parent 7872f19 commit e2aa152

File tree

1 file changed

+3
-1
lines changed
  • run/hello-broken/src/main/java/com/example/cloudrun

1 file changed

+3
-1
lines changed

run/hello-broken/src/main/java/com/example/cloudrun/App.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public static void main(String[] args) {
4949
res.status(200);
5050
return String.format("Hello %s!", name);
5151
});
52-
52+
// [END run_broken_service]
5353
get(
5454
"/improved",
5555
(req, res) -> {
@@ -63,6 +63,8 @@ public static void main(String[] args) {
6363
res.status(200);
6464
return String.format("Hello %s!", name);
6565
});
66+
67+
// [START run_broken_service]
6668
}
6769
}
6870
// [END run_broken_service]

0 commit comments

Comments
 (0)