-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
updates for 24.2 #1392
updates for 24.2 #1392
Conversation
# Mappings are written to the table "gxitproxy" within the database. | ||
# This value cannot match ``database_connection`` nor | ||
# ``install_database_connection``. | ||
#interactivetoolsproxy_map: null |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ping @kysrpex
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's ok, keep it as it is. After Galaxy has been updated I can go through the guide and merge the migration PR that I prepared, it will take care of changing this line.
@@ -2573,6 +2587,13 @@ base_app_main: &BASE_APP_MAIN | |||
# as threshold (above threshold: regular select fields will be used) | |||
#select_type_workflow_threshold: -1 | |||
|
|||
# API key for OpenAI (https://openai.com/) to enable the wizard (or | |||
# more?) | |||
#openai_api_key: null |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ToDo Bjoern, would be nice to put in here a Key.
@@ -13,7 +13,7 @@ built-in type, which could be any of the following types: int; long; float; str; | |||
Note that the values of these attributes are case-sensitive. | |||
--> | |||
<OIDC> | |||
<Setter Property="VERIFY_SSL" Value="True" Type="bool"/> | |||
<Setter Property="VERIFY_SSL" Value="False" Type="bool"/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kysrpex does this look correct to you?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, this does not look correct at all. Let's set it back to True
.
<Setter Property="VERIFY_SSL" Value="False" Type="bool"/> | |
<Setter Property="VERIFY_SSL" Value="True" Type="bool"/> |
If set to False
, Custos auth won't verify ssl certificates (see for example custos_authnz.py#L393, custos_authnz.py#L483, custos_authnz.py#L483, custos_authnz.py#L169). PSA auth is not affected, but just by mistake (the option is never honored).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
No description provided.