Skip to content

Commit 16a19e9

Browse files
author
Hitesh Khamesra
committed
GEODE-37 changed md file to point org.apache
1 parent c32fccb commit 16a19e9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

geode-spark-connector/doc/3_connecting.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ application code. In the following examples, we assume you want to provide
1414
In `<spark dir>/conf/spark-defaults.com`
1515
```
1616
spark.geode.locators=192.168.1.47[10334]
17-
spark.geode.security-client-auth-init=com.gemstone.geode.security.templates.UserPasswordAuthInit.create
17+
spark.geode.security-client-auth-init=org.apache.geode.security.templates.UserPasswordAuthInit.create
1818
spark.geode.security-username=scott
1919
spark.geode.security-password=tiger
2020
```
@@ -24,7 +24,7 @@ Or in the Spark application code:
2424
import org.apache.geode.spark.connector._
2525
val sparkConf = new SparkConf()
2626
.set(GeodeLocatorPropKey, "192.168.1.47[10334]")
27-
.set("spark.geode.security-client-auth-init", "com.gemstone.geode.security.templates.UserPasswordAuthInit.create")
27+
.set("spark.geode.security-client-auth-init", "org.apache.geode.security.templates.UserPasswordAuthInit.create")
2828
.set("spark.geode.security-username", "scott")
2929
.set("spark.geode.security-password", "tiger")
3030
```
@@ -35,7 +35,7 @@ After this, you can use all connector APIs without providing `GeodeConnectionCon
3535
Here's the code that creates `GeodeConnectionConf` with the same set of
3636
properties as the examples above:
3737
```
38-
val props = Map("security-client-auth-init" -> "com.gemstone.geode.security.templates.UserPasswordAuthInit.create",
38+
val props = Map("security-client-auth-init" -> "org.apache.geode.security.templates.UserPasswordAuthInit.create",
3939
"security-username" -> "scott",
4040
"security-password" -> "tiger")
4141
val connConf = GeodeConnectionConf("192.168.1.47[10334]", props)

0 commit comments

Comments
 (0)