Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion openstack_tui/src/cloud_worker/compute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ impl ComputeExt for Cloud {
)?
.build()?;

let res: Vec<Value> = openstack_sdk::api::paged(ep, Pagination::Limit(100))
let res: Vec<Value> = openstack_sdk::api::paged(ep, Pagination::All)
.query_async(session)
.await?;
return Ok(res);
Expand Down
2 changes: 1 addition & 1 deletion openstack_tui/src/cloud_worker/image.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ impl ImageExt for Cloud {
ep_builder.visibility(vis);
}
let ep = ep_builder.build()?;
let res: Vec<Value> = openstack_sdk::api::paged(ep, Pagination::Limit(100))
let res: Vec<Value> = openstack_sdk::api::paged(ep, Pagination::All)
.query_async(session)
.await?;
//let res: Vec<Value> = ep.query_async(session).await?;
Expand Down
4 changes: 2 additions & 2 deletions openstack_tui/src/cloud_worker/network.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ impl NetworkExt for Cloud {
ep_builder.sort_dir("asc");

let ep = ep_builder.build()?;
let res: Vec<Value> = openstack_sdk::api::paged(ep, Pagination::Limit(100))
let res: Vec<Value> = openstack_sdk::api::paged(ep, Pagination::All)
.query_async(session)
.await?;
return Ok(res);
Expand All @@ -52,7 +52,7 @@ impl NetworkExt for Cloud {
ep_builder.network_id(network_id.clone());
}
let ep = ep_builder.build()?;
let res: Vec<Value> = openstack_sdk::api::paged(ep, Pagination::Limit(100))
let res: Vec<Value> = openstack_sdk::api::paged(ep, Pagination::All)
.query_async(session)
.await?;
return Ok(res);
Expand Down
5 changes: 0 additions & 5 deletions openstack_tui/src/components/identity/projects.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,6 @@ impl<'a> Component for IdentityProjects<'a> {
}
Action::Tick => {
self.app_tick()?;
if let Mode::IdentityProjects = current_mode {
return Ok(Some(Action::RequestCloudResource(
Resource::IdentityProjects(self.get_filters().clone()),
)));
}
}
Action::Render => self.render_tick()?,
Action::ResourcesData {
Expand Down