is looking more like a display problem. The next morningâs scheduled-but-not-seen task did run.
The web browser in 2.0.8.1 polled Duplicati for status (seen in developer tools), looking like this:
http://127.0.0.1:8300/api/v1/serverstate/?lasteventid=372&longpoll=true&duration=299s
{
"ProgramState": "Running",
"UpdatedVersion": null,
"UpdaterState": "Waiting",
"UpdateReady": false,
"UpdateDownloadProgress": 0.0,
"ActiveTask": null,
"SchedulerQueueIds": [],
"ProposedSchedule": [
{
"Item1": "2",
"Item2": "2024-09-04T17:00:00Z"
}
],
"HasWarning": false,
"HasError": false,
"SuggestedStatusIcon": "Ready",
"EstimatedPauseEnd": "0001-01-01T00:00:00",
"LastEventID": 372,
"LastDataUpdateID": 8,
"LastNotificationUpdateID": 0
}
2.0.9.102 doesnât seem to ask, although the TrayIcon does (not that that helps show the status):
C:\Duplicati\duplicati-2.0.9.102_canary_2024-08-02-win-x64-gui>netstat -ano | findstr 8200
TCP 127.0.0.1:8200 0.0.0.0:0 LISTENING 46596
TCP 127.0.0.1:8200 127.0.0.1:49465 ESTABLISHED 46596
TCP 127.0.0.1:8200 127.0.0.1:51079 ESTABLISHED 46596
TCP 127.0.0.1:49465 127.0.0.1:8200 ESTABLISHED 29124
TCP 127.0.0.1:51079 127.0.0.1:8200 ESTABLISHED 46596
PID 29124 is Edge, so Iâm looking for the poll from port 49465 in Wireshark, but not seeing it.
I also have Edge sitting in developer tools looking for network activity, but itâs not making any.
Port 51079 is the TrayIcon polling its own server, but response is not showing scheduled job.
Possibly this variation of the request isnât supposed to, so maybe bug is lack of browser asks.
GET /api/v1/serverstate?longpoll=true&lastEventId=74&duration=5m HTTP/1.1
Host: localhost:8200
Authorization: Bearer REDACTED
User-Agent: Duplicati-TrayIcon-Monitor/2.0.9.102
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Date: Sun, 04 Aug 2024 13:29:53 GMT
Server: Kestrel
Transfer-Encoding: chunked
{âActiveTaskâ:null,âProgramStateâ:âRunningâ,âSchedulerQueueIdsâ:,âHasWarningâ:false,âHasErrorâ:false,âSuggestedStatusIconâ:âReadyâ,âEstimatedPauseEndâ:â0001-01-01T00:00:00â,âLastEventIDâ:75,âLastDataUpdateIDâ:11,âLastNotificationUpdateIDâ:0,âUpdatedVersionâ:null,âUpdaterStateâ:âWaitingâ,âUpdateDownloadLinkâ:null,âUpdateDownloadProgressâ:0}
EDIT:
Note that this EstimatedPauseEnd is the very-zero value Iâm used to seeing in System info.
I havenât figured out where Duplicati GUI is getting its unusual uneven non-zero value from.