Felix Ruess
Felix Ruess
My current workaround: ``` def ros_get_params(): """ This is a workaround since rospy.get_param('/') is currently broken. See https://github.com/ros/ros_comm/issues/2216 """ def build_nested(name, val, d): if name.startswith('/'): name = name[1:] if '/'...
I had a similar problem when running ROS nodes in docker. What helped was reducing the max file handles to 1024 again (as it is normally set without docker). You...
friendly ping...
> The PACKAGE_VERSION is not alive after find_packaging. Unless you explicitly include the version file in the config file... which you should you not do and is not needed. A...
yes, and to not set PACKAGE_VERSION globally (which was only used to print the AWSSDK_VERSION), the config version file should not be included in the config file. That is fixed...
IIRC this is automatically created by cmake and this should not be include in the XConfig.cmake file
@anderseknert I have the same problem. If we could resolve symlinks for absolute paths given in `input.Body.HostConfig.Binds` and `input.Body.HostConfig.Mounts[_].Source`, then we could check the actual path in the policy file....
How about something like this (non-functional): ``` var bindMounts []string for _, b := range body["HostConfig"]["Binds"] { if strings.HasPrefix(b, "/") { abs, _ := filepath.EvalSymlinks(b) bindMounts = append(bindMounts, abs) }...
I started this in #61, hopefully will have some more time to test it this week...