Compare commits

...

4 Commits

Author SHA1 Message Date
Jonathan Bobel
0ff42e4561 Merge branch 'main' of https://github.com/GSA/notifications-admin into 2211-update-language-regarding-auto-refresh 2025-05-09 11:10:22 -04:00
Jonathan Bobel
80314ad76d Update test_jobs.py 2025-05-09 11:06:39 -04:00
ccostino
6193125492 Merge pull request #2564 from GSA/fix-noproxy
Update no_proxy environment variable
2025-05-08 18:01:09 -04:00
Carlo Costino
0b6e52349d Update no_proxy environment variable
This changeset updates the no_proxy environment variable to allow S3 through.

Signed-off-by: Carlo Costino <carlo.costino@gsa.gov>
2025-05-08 17:04:24 -04:00
2 changed files with 3 additions and 3 deletions

View File

@@ -6,4 +6,4 @@
export NEW_RELIC_PROXY_HOST=$egress_proxy
export http_proxy=$egress_proxy
export https_proxy=$egress_proxy
export no_proxy="apps.internal"
export no_proxy="apps.internal,s3-fips.us-gov-west-1.amazonaws.com"

View File

@@ -237,11 +237,11 @@ def test_should_show_job_with_sending_limit_exceeded_status(
job_id=fake_uuid,
)
assert normalize_spaces(page.select("main p")[2].text) == (
assert normalize_spaces(page.select("main p")[3].text) == (
"Notify cannot send these messages because you have reached a limit. "
"You can only send 1,000 messages per day and 250,000 messages in total."
)
assert normalize_spaces(page.select("main p")[3].text) == (
assert normalize_spaces(page.select("main p")[4].text) == (
"Upload this spreadsheet again tomorrow or contact the Notify.gov team to raise the limit."
)