-
-
Notifications
You must be signed in to change notification settings - Fork 824
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix disableUSPS since import running in separate context of Queue. #23777
Conversation
(Standard links)
|
@eileenmcnaughton I have no clue how I got back to here. But it does look like it's now just one commit to 5.51. |
nice |
nice - those tests will need the array key added so as not to fail |
@eileenmcnaughton Can you point me in the right direction for what needs to happen with the tests? |
probably everywhere you find |
@eileenmcnaughton Found it right after I commented by looking up the old failed test. I'm curious now if there is a way to have jenkins abandon a test. As it's running four or five on my last commits. |
I think I possibly CAN cancel jenkins jobs - but mostly we just wait it all out |
ef3ad91
to
ba70f01
Compare
So, I did the following and that seemed to work. Thanks for all that. But, do I do the git pull just periodically to keep things on track and then the fetch, rebase, push -f to squash?
|
yeah - I do |
yay - all passed |
Overview
I recall discussing getting rid of this option. So, setting it to disabled as default I think was better then having it accidentally run. I also added a notice about how it violates the USPS terms of service.
https://www.usps.com/business/web-tools-apis/address-information-api.htm
The Address Validation APIs can be used in conjunction with USPS SHIPPING OR MAILING SERVICES ONLY. The Address API must only be used on an individual transactional basis, i.e. not batch processing or cleansing of a database, but as a customer enters the information into a form on a website. Failure to comply with these terms and conditions can result in termination of USPS API access without prior notice.
Before
disableUSPS was being ignored as importing was moved to a separate context.
After
disableUSPS is being set for each batch.