File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -207,9 +207,7 @@ export class McpSessionDO extends McpSessionDOBase<CloudSessionDbHandle> {
207207 // outer `makeSessionServices`. When `AUTUMN_SECRET_KEY` is unset the
208208 // billing service degrades to a no-op tracker, so this stays inert in
209209 // cloud dev/preview environments that run without a billing backend.
210- Effect . provide (
211- CloudMeteredExecutionStackLayer . pipe ( Layer . provide ( AutumnService . Default ) ) ,
212- ) ,
210+ Effect . provide ( CloudMeteredExecutionStackLayer . pipe ( Layer . provide ( AutumnService . Default ) ) ) ,
213211 Effect . withSpan ( "McpSessionDO.makeExecutionStack" ) ,
214212 ) ;
215213 // Build the description here so `executor.connections.list()` stays under
Original file line number Diff line number Diff line change @@ -61,7 +61,9 @@ export const makeAutumnSurface = (autumnUrl: string): AutumnSurface => {
6161 } > ;
6262 } ;
6363 return ( body . list ?? [ ] )
64- . filter ( ( event ) => event . customer_id === query . customerId && event . feature_id === query . featureId )
64+ . filter (
65+ ( event ) => event . customer_id === query . customerId && event . feature_id === query . featureId ,
66+ )
6567 . map ( ( event ) => ( {
6668 customerId : event . customer_id ,
6769 featureId : event . feature_id ,
You can’t perform that action at this time.
0 commit comments