We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c00314d commit 4c492ffCopy full SHA for 4c492ff
javav2/example_code/firehose/src/main/java/com/example/firehose/scenario/FirehoseScenario.java
@@ -39,11 +39,12 @@ public static void main(String[] args) {
39
deliveryStreamName - The Firehose delivery stream name.
40
""";
41
42
- // if (args.length != 1) {
43
- // System.out.println(usage);
44
- // return;
45
- // }
46
- String deliveryStreamName = "scottstocks" ; //args[0];
+ if (args.length != 1) {
+ System.out.println(usage);
+ return;
+ }
+
47
+ String deliveryStreamName = args[0];
48
49
try {
50
// Read and parse sample data.
0 commit comments