Skip to content

Commit

Permalink
ready to merge
Browse files Browse the repository at this point in the history
  • Loading branch information
kreynoldsf5 committed Apr 12, 2024
1 parent 8ddea34 commit 1af445d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ Please see [here](./UserTags.md) for formatting information.
- [X] LabID - Each XC lab has a unique GUID. This is passed into the tool to determine what resources and permissions should be provisioned.
- [X] SQS_q - This is the SQS queue the Orijen provisioning tool is watching.
- [X] SQS_r - This is the SQS region.
- [X] XC - This is used to identify the instance running the tool. It's value should be "true".

## Project Orijen

Expand Down
2 changes: 1 addition & 1 deletion base/app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def find_sqs_region(url: str) -> str|None:
try:
region = re.search(r'sqs\.([\w-]+)\.amazonaws\.com', url).group(1)
return region
except (AttributeError) as e:
except AttributeError as e:
return None

def query_metadata(metadata_base_url: str) -> dict|None:
Expand Down

0 comments on commit 1af445d

Please sign in to comment.