-
Notifications
You must be signed in to change notification settings - Fork 207
Remove unnecessary awaits #6431
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
base: main
Are you sure you want to change the base?
Conversation
We detected some changes at Caution DO NOT create changesets for features which you do not wish to be included in the public changelog of the next CLI release. |
Coverage report
Show new covered files 🐣
Show files with reduced coverage 🔻
Test suite run success3228 tests passing in 1336 suites. Report generated by 🧪jest coverage report action from 0f7021c |
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.
LGTM
There are some warning from ESLint Report Analysis, but not sure they are relevant
5745cc2
to
0f7021c
Compare
c79edca
to
ccbd42a
Compare
Differences in type declarationsWe detected differences in the type declarations generated by Typescript for this branch compared to the baseline ('main' branch). Please, review them to ensure they are backward-compatible. Here are some important things to keep in mind:
New type declarationsWe found no new type declarations in this PR Existing type declarationspackages/cli-kit/dist/public/node/context/fqdn.d.ts@@ -50,4 +50,4 @@ export declare function identityFqdn(): Promise<string>;
* @param store - Store name.
* @returns Normalized store name.
*/
-export declare function normalizeStoreFqdn(store: string): Promise<string>;
\ No newline at end of file
+export declare function normalizeStoreFqdn(store: string): string;
\ No newline at end of file
|
WHY are these changes introduced?
Clean up unnecessary awaits
WHAT is this pull request doing?
await
keywords when callingnormalizeStoreFqdn
How to test your changes?
Measuring impact
How do we know this change was effective? Please choose one:
Checklist