-
Notifications
You must be signed in to change notification settings - Fork 5.5k
[BUG] pCloud Watch Folder trigger does not pick up events #4167
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
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
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.
HI @michelle0927 LGTM! Ready for QA!
|
This happens because the component is deduping by
That's correct. Events will be emitted when there is a change to the file contents. |
@michelle0927 Ok Noted. Thanks for the explanation. |
Verification completed and ready for release. |
* master: (57 commits) Adding app scaffolding for wakatime Adding app scaffolding for wakatime Adding app scaffolding for wakatime Modifying global config 3977 wildberries actions (#4111) Minor docs update Invocation budget docs (#4119) Adding app scaffolding for snapdocs Adding app scaffolding for snapdocs Adding app scaffolding for snapdocs Modifying global config Adding app scaffolding for sailpoint Adding app scaffolding for sailpoint Adding app scaffolding for sailpoint Modifying global config [BUG] pCloud Watch Folder trigger does not pick up events (#4167) #3815 - Tookan Actions (#4129) SMTP2GO: Adding actions to send single emails with body and template. (#4144) [BUG] Jira component only shows first 50 projects (#4162) Add dev.to new reading list item event (#4164) ...
Resolves #4136
The
created
andmodified
file dates from pCloud do not represent dates that the file was uploaded or modified within pCloud, but the original creation/modification dates of the file being uploaded.I updated the component to dedupe on
fileid
to find newly created files, andhash
(64 bit integer representing hash of the contents of the file can be used to determine if two files are the same or to monitor file contents for changes) to find modified files.