Update github repos to the mozilla org

This commit is contained in:
Andrew Halberstadt 2020-10-08 14:53:17 -04:00
Родитель 95a4473cc3
Коммит aa9bc4f814
5 изменённых файлов: 8 добавлений и 8 удалений

Просмотреть файл

@ -38,7 +38,7 @@ with the best `estimated_value`, are bid on first.
For now, you must clone the repo
git clone https://github.com/klahnakoski/SpotManager.git
git clone https://github.com/mozilla/ActiveData-SpotManager.git
### Branches
@ -95,7 +95,7 @@ control of SpotManager.***
your `InstanceManager`.
* **`instance.class`** - An additional property in `instance`: The full name
of the class you are using to setup/teardown an instance.
* **`debug`** - Settings for the [logging module](https://github.com/klahnakoski/SpotManager/blob/master/pyLibrary/debugs/README.md#configuration)
* **`debug`** - Settings for the [logging module](https://github.com/mozilla/ActiveData-SpotManager/blob/master/pyLibrary/debugs/README.md#configuration)
### More about `utility`
@ -168,7 +168,7 @@ and `mount` commands.
### Writing a InstanceManager
Conceptually, an instance manager is very simple, with only three methods
you need to implement. This repo has an example [`./examples/etl.py`](https://github.com/klahnakoski/SpotManager/blob/master/examples/etl.py)
you need to implement. This repo has an example [`./examples/etl.py`](https://github.com/mozilla/ActiveData-SpotManager/blob/master/examples/etl.py)
that you can review.
* **`required_utility()`** - function to determine how much utility is

Просмотреть файл

@ -243,7 +243,7 @@
}
},
"constants":{
"mo_http.http.default_headers":{"Referer": "https://github.com/klahnakoski/SpotManager"}
"mo_http.http.default_headers":{"Referer": "https://github.com/mozilla/ActiveData-SpotManager"}
},
"debug": {
"trace": true,

Просмотреть файл

@ -129,7 +129,7 @@
}
},
"constants":{
"mo_http.http.default_headers":{"Referer": "https://github.com/klahnakoski/SpotManager"}
"mo_http.http.default_headers":{"Referer": "https://github.com/mozilla/ActiveData-SpotManager"}
},
"debug": {
"trace": true,

Просмотреть файл

@ -200,7 +200,7 @@ def _install_python_indexer(instance, conn):
if not conn.exists("/home/ec2-user/ActiveData-ETL/"):
with conn.cd("/home/ec2-user"):
conn.sudo("yum -y install git")
conn.run("git clone https://github.com/klahnakoski/ActiveData-ETL.git")
conn.run("git clone https://github.com/mozilla/ActiveData-ETL.git")
with conn.cd("/home/ec2-user/ActiveData-ETL/"):
conn.run("git checkout push-to-es6")
@ -250,7 +250,7 @@ def _install_pypy_indexer(instance, conn):
if not conn.exists("/home/ec2-user/ActiveData-ETL/"):
with conn.cd("/home/ec2-user"):
conn.sudo("yum -y install git")
conn.run("git clone https://github.com/klahnakoski/ActiveData-ETL.git")
conn.run("git clone https://github.com/mozilla/ActiveData-ETL.git")
with conn.cd("/home/ec2-user/ActiveData-ETL/"):
conn.run("git checkout push-to-es6")

Просмотреть файл

@ -87,7 +87,7 @@ def _setup_etl_code(conn, please_stop):
conn.sudo("yum -y install git")
# conn.sudo("yum -y install gcc python3-devel") # REQUIRED FOR psutil
conn.run('rm -fr /home/ec2-user/ActiveData-ETL')
conn.run("git clone https://github.com/klahnakoski/ActiveData-ETL.git")
conn.run("git clone https://github.com/mozilla/ActiveData-ETL.git")
conn.run("mkdir -p /home/ec2-user/logs")
with conn.cd("/home/ec2-user/ActiveData-ETL"):