-
Notifications
You must be signed in to change notification settings - Fork 730
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
Delete unused imports and declarations #3100
Delete unused imports and declarations #3100
Conversation
👷 Deploy request for apollo-ios-docs pending review.Visit the deploys page to approve it
|
@calvincestari have you ever seen this Circle CI error before? |
The OAuth error? I've only seen that one when Apollo changed security config and we had to remove/add our auths. Should have been resolved a while ago. Try running it again. |
Don't think that's something I can do on my end |
I'm limited to mobile till the weekend but I don't think this is anything wrong in your PR. |
I've followed up with our security team to see if we can figure out what is going on, it appears limited to forked repo contributions so let's see what they come back with. I'll update you once I learn more. |
OK @Iron-Ham, it looks like it got a bit further with that empty commit I pushed. I've been told that you should try fully logging out of GitHub to see if that helps? In the past I followed these steps for CircleCI but you wouldn't have those credentials so I'm hoping the GH logout/login will resolve it for you. |
@calvincestari hopefully that does it? Double-checked if I had some old CircleCI tokens on my account from previous jobs but no dice. |
It looks like your fork might be quite far behind the upstream. I'm guessing that's the reason for the failed tests?
|
@calvincestari merged with |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the cleanup PR @Iron-Ham. The import removal looks good, I'm less certain about the RawData
type changes though.
@AnthonyMDev it looks like the opaqueObjectDataWrapper
should have been using the RawData
type alias to create the consistency we were looking for - can you confirm that please. I can't find any other reference to them so we either use that type in the function declaration or remove the type alias.
@calvincestari the |
I think this is the right choice. My opinion is to use them because it creates the consistency when reading the code that we wanted to achieve with that change, even if they have different types under the hood. |
I've been hesitant to remove I think this has to do with umbrella headers or something where If the files really don't use The I think the proper fix would be to change the typealiases to |
Good to know, thanks for that context. It appears that |
Closes #3099