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

Commit b87cdef

Browse files
Merge pull request #27 from openweave/feature/able_to_access_local_system_time
add feature to be able to access local system time
2 parents c2f7e12 + 4aa1cb5 commit b87cdef

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

cirque/nodes/dockernode.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ def merge_capapblity_arg(arg0, arg1):
5656
capability_run_args = reduce(
5757
merge_capapblity_arg, capability_run_args, {})
5858
kwargs.update(capability_run_args)
59+
kwargs.update({
60+
"cap_add": ["SYS_TIME"]
61+
})
5962
self.container = self._client.containers.run(
6063
self.image_name, detach=True, **kwargs)
6164
self.logger.info(

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.8.1
1+
1.8.2

0 commit comments

Comments
 (0)