Skip to content

Commit 32fc07b

Browse files
Delete function when called from create missing required positional argument only_errors
1 parent e9c0dd0 commit 32fc07b

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.7-alpine
22

3-
RUN pip install stackuchin==1.5.5
3+
RUN pip install stackuchin==1.5.6
44

55
VOLUME /project
66

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
here = path.abspath(path.dirname(__file__))
66

7-
current_version = str('1.5.5')
7+
current_version = str('1.5.6')
88

99
# Get the long description from the README file
1010
with open(path.join(here, 'README.md'), encoding='utf-8') as f:

src/stackuchin/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def __init__(self):
4343

4444
# noinspection PyMethodMayBeStatic
4545
def version(self):
46-
print("1.5.5")
46+
print("1.5.6")
4747

4848
# noinspection PyMethodMayBeStatic
4949
def create(self):

src/stackuchin/create.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def create(profile_name, stack_file, stack_name, secret, slack_webhook_url,
143143
stack_check_status = stack_check["Stacks"][0]["StackStatus"]
144144
if stack_check_status == "ROLLBACK_COMPLETE":
145145
# Delete the stack
146-
delete(profile_name, stack_file, stack_name, slack_webhook_url)
146+
delete(profile_name, stack_file, stack_name, slack_webhook_url, only_errors, from_pipeline)
147147

148148
except Exception as exc:
149149
print(exc)

0 commit comments

Comments
 (0)