Skip to content

Commit

Permalink
Merge pull request #61 from maciejzj/develop
Browse files Browse the repository at this point in the history
Release changes v0.2.1 to master
  • Loading branch information
maciejzj authored Jun 24, 2023
2 parents 3f0d68b + 90b6c44 commit a0bace3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ options:
-c CRON_EXPRESSION, --schedule CRON_EXPRESSION
schedule pipeline to run periodically with a cron expression
-a URL, --from-archive URL
Obtain postings data from archive (URL must point to JSON in data lake storage format)
obtain postings data from archive (URL must point to JSON in data lake storage format)
-r CONFIG_PATH, --redis CONFIG_PATH
choose Redis as the data lake with the given config file
-b CONFIG_PATH, --s3-bucket CONFIG_PATH
Expand All @@ -131,7 +131,7 @@ options:
-h, --help show this help message and exit
-w, --with-wsgi run dashboard server with WSGI (in deployment mode)
-l LABEL, --label LABEL
Extra label to be displayed at the top navbar
extra label to be displayed at the top navbar
-m CONFIG_PATH, --mongodb CONFIG_PATH
choose MongoDb as the data provider with the given config file
```
Expand Down
2 changes: 1 addition & 1 deletion deployment/it_jobs_meta_vars.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
it_jobs_meta_version: b962af2dc5a16548dec14f1a8c6e3b1803090505
it_jobs_meta_version: fee155380c4f7359d794dc088276de130f4b89ef
# Add the following for weekly updates:
# '--schedule "0 0 * * 1"'
# Add the following to run from an archived snapshot:
Expand Down
2 changes: 1 addition & 1 deletion deployment/playbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@
- name: Start itjobsmeta apps services
systemd:
name: "{{ item }}"
state: started
state: restarted
enabled: yes
loop:
- it-jobs-meta-pipeline
Expand Down
4 changes: 2 additions & 2 deletions it_jobs_meta/common/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def _build_pipeline_command(self):
action='store',
default=None,
type=str,
help='Obtain postings data from archive (URL must point to JSON in data lake storage format)', # noqa: E501
help='obtain postings data from archive (URL must point to JSON in data lake storage format)', # noqa: E501
)

# Data lake setup
Expand Down Expand Up @@ -202,7 +202,7 @@ def _build_dashboard_command(self):
action='store',
default=None,
type=str,
help='Extra label to be displayed at the top navbar',
help='extra label to be displayed at the top navbar',
)

# Data provsion setup (from data warehouse)
Expand Down

0 comments on commit a0bace3

Please sign in to comment.