diff --git a/.github/workflows/quest-bulk.yml b/.github/workflows/quest-bulk.yml index d062470cded..cff69481a0b 100644 --- a/.github/workflows/quest-bulk.yml +++ b/.github/workflows/quest-bulk.yml @@ -2,6 +2,7 @@ name: "bulk quest import" on: schedule: - cron: '0 10 * * *' # UTC time, that's 5:00 am EST, 2:00 am PST. + - cron: '0 9 6 * *' # This is the morning of the 6th. workflow_dispatch: inputs: reason: @@ -49,4 +50,4 @@ jobs: org: ${{ github.repository_owner }} repo: ${{ github.repository }} issue: '-1' - duration: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.duration || 5 }} + duration: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.duration || github.event.schedule == '0 9 6 * *' && -1 || 5 }} diff --git a/xml/System.Net/NetworkCredential.xml b/xml/System.Net/NetworkCredential.xml index f48a32677dd..d8108a864fb 100644 --- a/xml/System.Net/NetworkCredential.xml +++ b/xml/System.Net/NetworkCredential.xml @@ -78,7 +78,7 @@ The class is a base class that supplies credentials in password-based authentication schemes such as basic, digest, NTLM, and Kerberos. Classes that implement the interface, such as the class, return objects. > [!NOTE] -> On Unix platforms, use of NTLM authentication might require installing the NTLM plugin for the GSSAPI layer used by the implementation. On Ubuntu distributions, the package is called `gss-ntlmssp`. Alternatively, applications can opt in for a managed implementation of NTLM by setting the `System.Net.Security.UseManagedNtlm` AppContext switch or, in .NET 10 and later, the `UseManagedNtlm` MSBuild property. +> On Unix platforms, use of NTLM authentication may require installing the NTLM plugin for the GSSAPI layer used by the implemention. On Ubuntu distributions, the package is called `gss-ntlmssp`. Alternatively, applications may opt in for a managed implementation of NTLM by setting the `_UseManagedNtlm` .csproj property (.NET 9+ only), or setting the `System.Net.Security.UseManagedNtlm` AppContext switch. > > On Windows, NTLM and Negotiate (Kerberos) authentication always depend on GSSAPI of the operating system.