Skip to content

Commit

Permalink
Merge pull request #30 from datadope-io/feature/fix_ol
Browse files Browse the repository at this point in the history
Avoid unexpected error for oracle listener processing
  • Loading branch information
david-ns authored Aug 21, 2024
2 parents 3283fe9 + b37b530 commit c28ad6a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 1.12.1

## Fixed

- Avoid unexpected error for oracle listener processing.

# 1.12.0

## Features
Expand Down
1 change: 0 additions & 1 deletion docs/development_environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ Following pip packages must be installed in this virtual env. You can choose ans
higher than the minimum supported version:
* `ansible`
* `pytest`
* `pytest-lazy-fixture`
* `pytest-ansible-units`

## Prepare for ansible collection development
Expand Down
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace: datadope
name: discovery

# The version of the collection. Must be compatible with semantic versioning
version: 1.12.0
version: 1.12.1

# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,13 @@
extra_data: "<< (__instance__.extra_data | default({})) | combine({
'name': __instance__._name
}) >>"
when: __instance__._name is defined
- name: Add bin file to files
add_file_info:
path: "<< __instance__._bin_file >>"
type: binary
subtype: process_bin_file
when: __instance__._bin_file is defined
- name: Block to execute command lsnrctl
block:
- name: Execute lsnrctl
Expand Down

0 comments on commit c28ad6a

Please sign in to comment.