Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change metis host location, mapd.com -> omnisci.com #424

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion example/example1.html
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@
* username, password, host, port, and database name */
new MapdCon()
.protocol("https")
.host("metis.mapd.com")
.host("metis.omnisci.com")
.port("443")
.dbName("mapd")
.user("mapd")
Expand Down
2 changes: 1 addition & 1 deletion example/example2.html
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@
// A MapdCon instance is used for performing raw queries on a MapD GPU database.
new MapdCon()
.protocol("https")
.host("metis.mapd.com")
.host("metis.omnisci.com")
.port("443")
.dbName("mapd")
.user("mapd")
Expand Down
2 changes: 1 addition & 1 deletion example/example3.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ document.addEventListener("DOMContentLoaded", function init() {

new MapdCon()
.protocol("https")
.host("metis.mapd.com")
.host("metis.omnisci.com")
.port("443")
.dbName("mapd")
.user("mapd")
Expand Down
2 changes: 1 addition & 1 deletion example/example4.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ document.addEventListener("DOMContentLoaded", function init() {
// A MapdCon instance is used for performing raw queries on a MapD GPU database.
new MapdCon()
.protocol("https")
.host("metis.mapd.com")
.host("metis.omnisci.com")
.port("443")
.dbName("mapd")
.user("mapd")
Expand Down
2 changes: 1 addition & 1 deletion example/example5.html
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@
function init() {
var con = new MapdCon()
.protocol("https")
.host("metis.mapd.com")
.host("metis.omnisci.com")
.port("443")
.dbName("mapd")
.user("mapd")
Expand Down
2 changes: 1 addition & 1 deletion example/exampleGeoHeat.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ let HeatLayer

const Connector = new MapdCon()
.protocol("https")
.host("metis.mapd.com")
.host("metis.omnisci.com")
.port("443")
.dbName("mapd")
.user("mapd")
Expand Down
2 changes: 1 addition & 1 deletion example/exampleLinemap.html
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@

const con = new MapdCon()
.protocol("https")
.host("metis.mapd.com")
.host("metis.omnisci.com")
.port("443")
.dbName("mapd")
.user("mapd")
Expand Down
2 changes: 1 addition & 1 deletion example/exampleMapD3Crossfilter.js
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ function init() {
* username, password, host, port, and database name */
new MapdCon()
.protocol("https")
.host("metis.mapd.com")
.host("metis.omnisci.com")
.port("443")
.dbName("mapd")
.user("mapd")
Expand Down
2 changes: 1 addition & 1 deletion example/exampleMultiLayerMap.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ document.addEventListener("DOMContentLoaded", function init() {
// A MapdCon instance is used for performing raw queries on a MapD GPU database.
new MapdCon()
.protocol("https")
.host("metis.mapd.com")
.host("metis.omnisci.com")
.port("443")
.dbName("mapd")
.user("mapd")
Expand Down
2 changes: 1 addition & 1 deletion example/exampleMultiLayerScatterplot.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ document.addEventListener("DOMContentLoaded", function init() {
// A MapdCon instance is used for performing raw queries on a MapD GPU database.
new MapdCon()
.protocol("https")
.host("metis.mapd.com")
.host("metis.omnisci.com")
.port("443")
.dbName("mapd")
.user("mapd")
Expand Down
2 changes: 1 addition & 1 deletion example/exampleStackedBarchart.html
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
// A MapdCon instance is used for performing raw queries on a MapD GPU database.
new MapdCon()
.protocol("https")
.host("metis.mapd.com")
.host("metis.omnisci.com")
.port("443")
.dbName("mapd")
.user("mapd")
Expand Down