mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
nits
This commit is contained in:
@@ -1907,6 +1907,7 @@ pub async fn run_worker(
|
||||
tracing::error!("error in awaiting send_result process: {e:?}")
|
||||
}
|
||||
}
|
||||
tracing::info!(worker = %worker_name, hostname = %hostname, "waiting for interactive_shell to finish");
|
||||
if let Some(interactive_shell) = interactive_shell {
|
||||
if let Err(e) = interactive_shell.await {
|
||||
tracing::error!("error in awaiting interactive_shell process: {e:?}")
|
||||
|
||||
@@ -82,12 +82,11 @@ export const settings: Record<string, Setting[]> = {
|
||||
storage: 'setting',
|
||||
error: 'Base url must start with http:// or https:// and not end with / or a space',
|
||||
isValid: (value: string | undefined) =>
|
||||
value
|
||||
? value?.startsWith('http') &&
|
||||
value == undefined
|
||||
|| value?.startsWith('http') &&
|
||||
value.includes('://') &&
|
||||
!value?.endsWith('/') &&
|
||||
!value?.endsWith(' ')
|
||||
: false
|
||||
},
|
||||
{
|
||||
label: 'Email domain',
|
||||
|
||||
Reference in New Issue
Block a user