-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
On Windows Chrome was not killed, so the program producing the PDF never finished. see #72670
- Loading branch information
1 parent
2025766
commit 3e69fe6
Showing
3 changed files
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,8 @@ | ||
package main | ||
|
||
type config struct { | ||
Config map[string]map[string]any `json:"config,omitempty"` | ||
} | ||
|
||
// infoT as received via the command line | ||
type infoT struct { | ||
ApiURL string `json:"api_url"` | ||
ExternalURL string `json:"external_url"` | ||
ApiToken string `json:"api_user_access_token"` | ||
Config struct { | ||
System config `json:"system,omitempty"` | ||
Plugin map[string]config `json:"plugin,omitempty"` | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters