Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusbooyah committed Apr 8, 2024
2 parents 602afdc + 9015edc commit 725a637
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/Neon.Kubernetes/KubernetesExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ public static async Task<V1Secret> UpsertSecretAsync(
/// <param name="fieldSelector">Optionally specifies a field selector.</param>
/// <param name="pollInterval">Optionally specifies the polling interval. This defaults to 1 second.</param>
/// <param name="timeout">Optopnally specifies the operation timeout. This defaults to 30 seconds.</param>
/// <param name="cancellationToken">Optionally specifies the cancellation token.</param>
/// <param name="cancellationToken">Optionally specifies a cancellation token.</param>
/// <returns>The tracking <see cref="Task"/>.</returns>x
/// <remarks>
/// One of <paramref name="name"/>, <paramref name="labelSelector"/>, or <paramref name="fieldSelector"/>
Expand Down Expand Up @@ -636,7 +636,7 @@ await NeonHelper.WaitForAsync(
/// <param name="fieldSelector">Optionally specifies a field selector.</param>
/// <param name="pollInterval">Optionally specifies the polling interval. This defaults to 1 second.</param>
/// <param name="timeout">Optopnally specifies the operation timeout. This defaults to 30 seconds.</param>
/// <param name="cancellationToken">Optionally specifies the cancellation token.</param>
/// <param name="cancellationToken">Optionally specifies a cancellation token.</param>
/// <returns>The tracking <see cref="Task"/>.</returns>
/// <remarks>
/// One of <paramref name="name"/>, <paramref name="labelSelector"/>, or <paramref name="fieldSelector"/>
Expand Down Expand Up @@ -717,7 +717,7 @@ await NeonHelper.WaitForAsync(
/// <param name="fieldSelector">Optionally specifies a field selector.</param>
/// <param name="pollInterval">Optionally specifies the polling interval. This defaults to 1 second.</param>
/// <param name="timeout">Optopnally specifies the operation timeout. This defaults to 30 seconds.</param>
/// <param name="cancellationToken">Optionally specifies the cancellation token.</param>
/// <param name="cancellationToken">Optionally specifies a cancellation token.</param>
/// <returns>The tracking <see cref="Task"/>.</returns>
/// <remarks>
/// One of <paramref name="name"/>, <paramref name="labelSelector"/>, or <paramref name="fieldSelector"/>
Expand Down Expand Up @@ -796,7 +796,7 @@ await NeonHelper.WaitForAsync(
/// <param name="namespaceParameter">The namespace.</param>
/// <param name="pollInterval">Optionally specifies the polling interval. This defaults to 1 second.</param>
/// <param name="timeout">Optopnally specifies the operation timeout. This defaults to 30 seconds.</param>
/// <param name="cancellationToken">Optionally specifies the cancellation token.</param>
/// <param name="cancellationToken">Optionally specifies a cancellation token.</param>
/// <returns>The tracking <see cref="Task"/>.</returns>x
public static async Task WaitForPodAsync(
this ICoreV1Operations k8sCoreV1,
Expand Down Expand Up @@ -1115,7 +1115,7 @@ public static async Task<V1PodList> ListAllPodsAsync(this ICoreV1Operations k8sC
// long. But we also don't want to slam the API server with potentially
// thousands of pod queries all at once.
//
// We're going to queries for all of the namespaces and then perform pod
// We're going to query for all of the namespaces and then perform pod
// queries in parallel, but limiting that concurrency to something reasonable.

const int podListConcurency = 100;
Expand Down
2 changes: 1 addition & 1 deletion src/Neon.Kubernetes/PortForwarding/PortListener.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ internal sealed class PortListener : IPortListener
/// <param name="localPort">Specifies the local port.</param>
/// <param name="localAddress">The local IP Address. Defaults to <see cref="IPAddress.Loopback"/>.</param>
/// <param name="loggerFactory">Optionally specifies the logger factory.</param>
/// <param name="cancellationToken">Optionally specifies the cancellation token.</param>
/// <param name="cancellationToken">Optionally specifies a cancellation token.</param>
public PortListener(
int localPort,
IPAddress localAddress = null,
Expand Down

0 comments on commit 725a637

Please sign in to comment.