-
My backups to onedrive run once per day in the middle of the night. I log the onedrive output and email it to myself. Since I updated to onedrive v2.5.0-rc1-11-g235fbf7 I've noticed that the step Configuring Global Azure AD Endpoints can take an extraordinarily long time. I assume it's due to load on azure or onedrive in the middle of the night, but still seems quite long. and sometimes it's quite fast.
|
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 7 replies
-
It is merely a log output when you start the application, how the application is configuring itself to use the 'common' Azure AD authentication endpoints. There is zero online interaction at that point in the application execution other than variable assignment. If this is taking an inordinate amount of time, there is something else going on on your system that is being missed in your logging - as if the next line is truly Given that you are running Please note also, v2.5.0-rc2 will drop in the next few days. |
Beta Was this translation helpful? Give feedback.
-
Thanks for the quick response. I understand that it's log output, and likely an Azure issue, it's just that minutes is...surprising. And yes, that's what comes from onedrive stdout and stderr (piped to stdout). Here's the onedrive command I'm using. Yes, upload only, master is here. Does that change what would be expected?
And here's a full log (minus the 3 files copied) from /var/log/onedrive:
I'll wait for v2.5.0-rc2 and update then. Thanks for the heads up! |
Beta Was this translation helpful? Give feedback.
-
Thanks, added |
Beta Was this translation helpful? Give feedback.
-
@gitbls A number of memory leaks were identified in rc1 which should be resolved in rc2 (testing has verified this). Please update to v2.5.0-rc2 when possible. |
Beta Was this translation helpful? Give feedback.
@gitbls
It is merely a log output when you start the application, how the application is configuring itself to use the 'common' Azure AD authentication endpoints.
There is zero online interaction at that point in the application execution other than variable assignment.
If this is taking an inordinate amount of time, there is something else going on on your system that is being missed in your logging - as if the next line is truly
Performing a database consistency and integrity check on locally stored data
... you are missing a whole bunch of other application output well before it gets to that actual point of execution. This possibly accoun…