@@ -30,7 +30,6 @@ import { commaSeries } from '~/util/str'
30
30
import { GiB } from '~/util/units'
31
31
32
32
import { genCumulativeI64Data } from '../metrics'
33
- import { serial } from '../serial'
34
33
import { defaultSilo , toIdp } from '../silo'
35
34
import { getTimestamps } from '../util'
36
35
import { defaultFirewallRules } from '../vpc'
@@ -838,10 +837,6 @@ export const handlers = makeHandlers({
838
837
839
838
return json ( instance , { status : 202 } )
840
839
} ,
841
- async instanceSerialConsole ( _params ) {
842
- await delay ( 3000 )
843
- return json ( serial )
844
- } ,
845
840
instanceStart ( { path, query } ) {
846
841
const instance = lookup . instance ( { ...path , ...query } )
847
842
instance . run_state = 'starting'
@@ -1630,6 +1625,7 @@ export const handlers = makeHandlers({
1630
1625
certificateDelete : NotImplemented ,
1631
1626
certificateList : NotImplemented ,
1632
1627
certificateView : NotImplemented ,
1628
+ instanceSerialConsole : NotImplemented ,
1633
1629
instanceSerialConsoleStream : NotImplemented ,
1634
1630
instanceSshPublicKeyList : NotImplemented ,
1635
1631
internetGatewayCreate : NotImplemented ,
0 commit comments