Skip to content

Commit 2e546e9

Browse files
- Linter changes.
1 parent 4c44a66 commit 2e546e9

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

internal/stackql/asynccompose/asyncmonitor.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ func newGoogleAsyncMonitor(
141141
prov provider.IProvider,
142142
op anysdk.OperationStore,
143143
version string, //nolint:unparam // TODO: refactor
144-
isReturning bool,
144+
isReturning bool, //nolint:unparam,revive // TODO: refactor
145145
) (IAsyncMonitor, error) {
146146
//nolint:gocritic //TODO: refactor
147147
switch version {

internal/stackql/execution/mono_valent_execution.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1471,7 +1471,7 @@ func shimProcessHTTP(
14711471
return httpResponse, nil
14721472
}
14731473

1474-
//nolint:funlen,gocognit // acceptable for now
1474+
//nolint:funlen,gocognit,gocyclo,cyclop // acceptable for now
14751475
func GetMonitorExecutor(
14761476
handlerCtx handler.HandlerContext,
14771477
provider anysdk.Provider,

internal/stackql/primitivebuilder/exec.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,9 @@ func (ss *Exec) Build() error {
175175
ss.graph.CreatePrimitiveNode(execPrimitive)
176176
return nil
177177
}
178-
pr, err := asynccompose.ComposeAsyncMonitor(handlerCtx, execPrimitive, prov, m, nil, false, nil, nil) // returning hardcoded to false for now
178+
pr, err := asynccompose.ComposeAsyncMonitor(
179+
handlerCtx, execPrimitive, prov, m,
180+
nil, false, nil, nil) // returning hardcoded to false for now
179181
if err != nil {
180182
return err
181183
}

internal/stackql/primitivebuilder/mono_valent_builder.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ type monoValentBuilder struct {
3131
root primitivegraph.PrimitiveNode
3232
stream streaming.MapStream
3333
isReadOnly bool //nolint:unused // TODO: build out
34-
isAwait bool
34+
isAwait bool //nolint:unused // TODO: build out
3535
monoValentExecutorFactory execution.MonoValentExecutorFactory
3636
}
3737

0 commit comments

Comments
 (0)