Skip to content

Commit

Permalink
remove quotes from connection string (causes problems on Windows)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmoskal committed Mar 7, 2024
1 parent dbb0975 commit b93225f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rllm/rllm-base/src/server/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ More info at: {url}"#
);
Ok(web::Json(serde_json::json!({
"msg": msg,
"connection_string": "AICI_API_BASE=\"{website}/v1/#key={key}\""
"connection_string": "AICI_API_BASE={website}/v1/#key={key}"
})))
}

Expand Down

0 comments on commit b93225f

Please sign in to comment.