Skip to content

Commit d069bb8

Browse files
committed
Added missing LastMetadataIndex accessors
1 parent f061fa1 commit d069bb8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

scripts/ws/daemonstatusservice.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ def get_au_status(host, auth, auid):
7676
- LastCompletedDeepCrawlDepth (numeric)
7777
- LastPoll (numeric)
7878
- LastPollResult (string)
79+
- LastMetadataIndex (numeric)
7980
- PluginName (string)
8081
- Provider (string)
8182
- Publisher (string)
@@ -271,6 +272,7 @@ def query_aus(host, auth, select, where=None):
271272
- LastCompletedDeepCrawlDepth (numeric)
272273
- LastPoll (numeric)
273274
- LastPollResult (string)
275+
- LastMetadataIndex (numeric)
274276
- Name (string)
275277
- NewContentCrawlUrls (list of strings)
276278
- PeerAgreements, a list of records with these fields:
@@ -560,6 +562,7 @@ def _file_lines(fstr):
560562
'lastCompletedDeepCrawlDepth': ('Last completed deep crawl depth', lambda r: r.LastCompletedDeepCrawlDepth),
561563
'lastPoll': ('Last poll', lambda r: datetimems(r.LastPoll)),
562564
'lastPollResult': ('Last poll result', lambda r: r.LastPollResult),
565+
'lastMetadataIndex': ('Last metadata index', lambda r: datetimems(r.LastMetadataIndex)),
563566
'pluginName': ('Plugin name', lambda r: r.PluginName),
564567
'provider': ('Provider', lambda r: r.Provider),
565568
'publisher': ('Publisher', lambda r: r.Publisher),
@@ -709,6 +712,7 @@ def _do_is_daemon_ready(options):
709712
'lastCompletedDeepCrawlDepth': ('Last completed deep crawl depth', lambda r: r.LastCompletedDeepCrawlDepth),
710713
'lastPoll': ('Last poll', lambda r: datetimems(r.LastPoll)),
711714
'lastPollResult': ('Last poll result', lambda r: r.LastPollResult),
715+
'lastMetadataIndex': ('Last metadata index', lambda r: datetimems(r.LastMetadataIndex)),
712716
'name': ('Name', lambda r: r.Name),
713717
'newContentCrawlUrls': ('New content crawl URLs', lambda r: '<NewContentCrawlUrls>'),
714718
'peerAgreements': ('Peer agreements', lambda r: '<PeerAgreements>'),

0 commit comments

Comments
 (0)