Skip to content

Commit

Permalink
make fix
Browse files Browse the repository at this point in the history
  • Loading branch information
noise64 committed Jan 29, 2025
1 parent 6cb6618 commit f508c95
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// limitations under the License.

use crate::components::component_service::{
new_component_client, new_plugin_client, ComponentServiceClient, ComponentService,
new_component_client, new_plugin_client, ComponentService, ComponentServiceClient,
ComponentServiceEnvVars, PluginServiceClient,
};
use crate::components::docker::KillContainer;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// limitations under the License.

use crate::components::component_service::{
AddComponentError, ComponentServiceClient, ComponentService, PluginServiceClient,
AddComponentError, ComponentService, ComponentServiceClient, PluginServiceClient,
};
use async_trait::async_trait;
use golem_common::model::component_metadata::DynamicLinkedInstance;
Expand Down
4 changes: 2 additions & 2 deletions golem-test-framework/src/components/component_service/k8s.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
// limitations under the License.

use crate::components::component_service::{
new_component_client, new_plugin_client, wait_for_startup, ComponentServiceClient, ComponentService,
ComponentServiceEnvVars, PluginServiceClient,
new_component_client, new_plugin_client, wait_for_startup, ComponentService,
ComponentServiceClient, ComponentServiceEnvVars, PluginServiceClient,
};
use crate::components::k8s::{
K8sNamespace, K8sPod, K8sRouting, K8sRoutingType, K8sService, ManagedPod, ManagedService,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ pub trait ComponentService {
file,
files
.as_ref()
.and_then(|files| to_http_file_permissions(&files))
.and_then(|files| to_http_file_permissions(files))
.as_ref(),
None::<File>, // TODO: zipped files
to_http_dynamic_linking(dynamic_linking).as_ref(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
// limitations under the License.

use crate::components::component_service::{
new_component_client, new_plugin_client, ComponentServiceClient, ComponentService, PluginServiceClient,
new_component_client, new_plugin_client, ComponentService, ComponentServiceClient,
PluginServiceClient,
};
use crate::config::GolemClientProtocol;
use async_trait::async_trait;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
// limitations under the License.

use crate::components::component_service::{
new_component_client, new_plugin_client, wait_for_startup, ComponentServiceClient, ComponentService,
ComponentServiceEnvVars, PluginServiceClient,
new_component_client, new_plugin_client, wait_for_startup, ComponentService,
ComponentServiceClient, ComponentServiceEnvVars, PluginServiceClient,
};
use crate::components::rdb::Rdb;
use crate::components::{ChildProcessLogger, GolemEnvVars};
Expand Down

0 comments on commit f508c95

Please sign in to comment.