Closed venkatajagannath closed 2 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 98.16%. Comparing base (
fd9807b
) to head (bd4539a
).
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
While setting up a Ray cluster on K8, we need to provide namespace option.
The expected behavior is to pick the namespace provided in the connection (using
self.get_namespace()
) or usedefault
The code though has a bug. If the namespace is not provided in the connection, it does not use the default.
This is because the variable created in the init method is not used in the setup_ray_cluster & delete_ray_cluster methods. Instead a direct call is made to
self.get_namespace()
This PR fixes that bug