Skip to content
This repository was archived by the owner on Oct 22, 2025. It is now read-only.

Commit eec70d3

Browse files
Merge pull request #58 from lukemartinlogan/master
Add net sleep
2 parents ae799eb + d4fd183 commit eec70d3

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

jarvis_util/introspect/system_info.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -509,10 +509,14 @@ def build(self, exec_info, introspect=True, net_sleep=10):
509509
self.apply()
510510
return self
511511

512-
def modify(self, exec_info):
512+
def modify(self, exec_info, net_sleep):
513+
"""
514+
Edit a resource graph with new information
515+
516+
"""
513517
self.introspect_fs(exec_info)
514-
self.introspect_net(exec_info, prune_nets=True)
515-
pass
518+
self.introspect_net(exec_info, prune_nets=True, net_sleep=net_sleep)
519+
self.apply()
516520

517521
"""
518522
Introspect filesystems

0 commit comments

Comments
 (0)