We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0600dde commit ed89a30Copy full SHA for ed89a30
examples/expiring-tags.rs
@@ -97,7 +97,10 @@ async fn info_task(blobs: BlobsClient) -> anyhow::Result<()> {
97
loop {
98
let now = chrono::Utc::now();
99
let mut tags = blobs.tags().list().await?;
100
- println!("Current time: {}", now.to_rfc3339_opts(chrono::SecondsFormat::Secs, true));
+ println!(
101
+ "Current time: {}",
102
+ now.to_rfc3339_opts(chrono::SecondsFormat::Secs, true)
103
+ );
104
println!("Tags:");
105
while let Some(tag) = tags.next().await {
106
let tag = tag?;
0 commit comments