Skip to content

Commit

Permalink
Removed debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
bigbitbus committed Dec 23, 2021
1 parent 6612dc0 commit a69ca31
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 3 additions & 3 deletions examples/ci-tests/create-and-destroy-aws/environment.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# This opta environment is used by the test-ci job in the runxc repo.
name: awsenv-ci-sachin
name: awsenv-ci
org_name: runx
providers:
aws:
region: us-east-2
account_id: 652824372180
account_id: 693658092572
modules:
- type: base
- type: dns
Expand All @@ -15,4 +15,4 @@ modules:
spot_instances: true
- type: k8s-base
admin_arns:
- "arn:aws:iam::652824372180:user/github-actions"
- "arn:aws:iam::693658092572:user/github-actions"
4 changes: 1 addition & 3 deletions opta/layer.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from __future__ import annotations
from traceback import format_exc

import hashlib
import importlib
import os
Expand Down Expand Up @@ -80,8 +80,6 @@ def get_processor_class(module_type: str) -> ModuleProcessor:
pymodule_path = generate_pymodule_path(module_type)
pymodule = importlib.import_module(pymodule_path)
except ModuleNotFoundError:
print("While getting processor class for {} ".format(module_type))
print(format_exc())
return ModuleProcessor

return pymodule.__dict__[PROCESSOR_DICT[module_type]]
Expand Down

0 comments on commit a69ca31

Please sign in to comment.