-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Missing dependencies fix #19052
Missing dependencies fix #19052
Conversation
Your contributed GoogleChronicleBackstory pack has been modified on files:Packs/GoogleChronicleBackstory/pack_metadata.json |
Your contributed CreatePlbkDoc pack has been modified on files:Packs/CreatePlbkDoc/pack_metadata.json |
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.
Does this affect the demisto-sdk upload
command when no flags are specified?
And does it affect the build process (when packs are uploaded), and if so was it tested in that way as well?
This has no effect on the 'demisto-sdk' upload command. |
Your contributed Wiz pack has been modified on files:Packs/Wiz/pack_metadata.json |
Path(pack_with_dep_path).mkdir(parents=True, exist_ok=True) | ||
if not (pack.zip_path and os.path.isfile(pack.zip_path)): | ||
task_status = sign_and_zip_pack(pack, signature_key) | ||
if pack.status not in [*SKIPPED_STATUS_CODES, PackStatus.SUCCESS.name]: |
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.
nice
* ignore dependencies of packs from other MP * test pack * fix dependencies * fix random dependencies * debug logs * change * test change * remove failing pack * d * test change * remove testing * remove testing files * add removed pack * add removed pack * lint
Status
Related Issues
fixes: An issue where the upload flow was re-uploading packs that were not modified due to the 'missing dependencies' mechanism - these packs had misspelled dependencies, causing them to be marked as missing dependencies (and therefore re-uploaded).
Also: reduced 'upload packs with dependencies zip' to upload only modified packs or packs that their dependencies have been modified.