Skip to content

Commit

Permalink
Merge pull request #554 from johnsonshih/user/jshih/no-pre-start-requ…
Browse files Browse the repository at this point in the history
…ired

Set pre_start_required to false in get_device_plugin_options
  • Loading branch information
yujinkim-msft committed Apr 4, 2023
2 parents bfd0fe6 + f930f5d commit 6fe39ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agent/src/util/device_plugin_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ impl DevicePlugin for DevicePluginService {
) -> Result<Response<DevicePluginOptions>, Status> {
trace!("get_device_plugin_options - kubelet called get_device_plugin_options");
let resp = DevicePluginOptions {
pre_start_required: true,
pre_start_required: false,
};
Ok(Response::new(resp))
}
Expand Down

0 comments on commit 6fe39ec

Please sign in to comment.