Skip to content

Commit 00ff61e

Browse files
authored
Merge pull request #36 from JoshVanL/fix-scheduled-start-time-start
Fix Scheduled start time
2 parents b74ab7a + e646b95 commit 00ff61e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/executor.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ func (g *grpcExecutor) StartInstance(ctx context.Context, req *protos.CreateInst
482482
return nil, fmt.Errorf("failed to create orchestration instance: %w", err)
483483
}
484484

485-
if !g.skipWaitForInstanceStart {
485+
if req.ScheduledStartTimestamp == nil && !g.skipWaitForInstanceStart {
486486
_, err := g.WaitForInstanceStart(ctx, &protos.GetInstanceRequest{InstanceId: instanceID})
487487
if err != nil {
488488
return nil, err

0 commit comments

Comments
 (0)