Skip to content

Commit 96a2d64

Browse files
vijikarthiRaulGracia
authored andcommitted
[issue-206] Fix invalid variable name (#207)
Fixed invalid variable names in PravegaFixedSegmentsOutputFormat and fixed readme doc changing develop branch reference. Signed-off-by: Vijay Srinivasaraghavan <[email protected]>
1 parent 79f80a3 commit 96a2d64

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

Diff for: README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -166,17 +166,17 @@ pravega-samples/pravega-client-examples/build/install/pravega-client-examples/bi
166166

167167
There is a Linux/Mac script and a Windows (.bat) script for each separate executable.
168168

169-
_Working with `develop` branch_: If you are curious about the most recent sample applications,
170-
you may like to try the `develop` version of `pravega-samples` as well. To do so, just clone the
171-
`develop` branch instead of `master` (default):
169+
_Working with `dev` branch_: If you are curious about the most recent sample applications,
170+
you may like to try the `dev` version of `pravega-samples` as well. To do so, just clone the
171+
`dev` branch instead of `master` (default):
172172

173173
```
174-
$ git clone -b develop https://github.com/pravega/pravega-samples.git
174+
$ git clone -b dev https://github.com/pravega/pravega-samples.git
175175
$ cd pravega-samples
176176
$ ./gradlew clean installDist
177177
```
178178

179-
The `develop` branch works with Pravega snapshots artifacts published in
179+
The `dev` branch works with Pravega snapshots artifacts published in
180180
our [JFrog repository](https://oss.jfrog.org/artifactory/jfrog-dependencies/io/pravega/) instead of
181181
using release versions.
182182

Diff for: hadoop-connector-examples/src/main/java/io/pravega/example/hadoop/PravegaFixedSegmentsOutputFormat.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,15 @@ public class PravegaFixedSegmentsOutputFormat<V> extends OutputFormat<String, V>
6060
private static final Logger log = LoggerFactory.getLogger(PravegaFixedSegmentsOutputFormat.class);
6161

6262
// Pravega scope name
63-
public static final String OUTPUT_SCOPE_NAME = "output.pravega.scope";
63+
public static final String OUTPUT_SCOPE_NAME = "pravega.scope";
6464
// Pravega stream name
65-
public static final String OUTPUT_STREAM_NAME = "output.pravega.stream";
65+
public static final String OUTPUT_STREAM_NAME = "pravega.stream";
6666
// Pravega stream segments
67-
public static final String OUTPUT_STREAM_SEGMENTS = "output.pravega.stream.segments";
67+
public static final String OUTPUT_STREAM_SEGMENTS = "pravega.stream.segments";
6868
// Pravega uri string
69-
public static final String OUTPUT_URI_STRING = "output.pravega.uri";
69+
public static final String OUTPUT_URI_STRING = "pravega.uri";
7070
// Pravega deserializer class name
71-
public static final String OUTPUT_DESERIALIZER = "output.pravega.deserializer";
71+
public static final String OUTPUT_DESERIALIZER = "pravega.deserializer";
7272

7373
static final long DEFAULT_TXN_TIMEOUT_MS = 30000L;
7474

0 commit comments

Comments
 (0)