Adjust const one more time

This commit is contained in:
Owen 2025-08-23 15:36:19 -07:00
parent 8bcb2b3b0f
commit 5d34bd82c0
No known key found for this signature in database
GPG key ID: 8271FDFFD9E0CCBD
13 changed files with 13 additions and 26 deletions

View file

@ -59,8 +59,7 @@ export default async function migration() {
// Read and parse the YAML file
const fileContents = fs.readFileSync(filePath, "utf8");
const rawConfig: any;
rawConfig = yaml.load(fileContents);
const rawConfig = yaml.load(fileContents) as any;
rawConfig.server.resource_session_request_param =
"p_session_request";