@@ -3071,7 +3071,7 @@ func (q *FakeQuerier) GetWorkspaceAgentLifecycleStateByID(ctx context.Context, i
3071
3071
}, nil
3072
3072
}
3073
3073
3074
- func (q * FakeQuerier ) GetWorkspaceAgentLogSourcesByAgentIDs (ctx context.Context , ids []uuid.UUID ) ([]database.WorkspaceAgentLogSource , error ) {
3074
+ func (q * FakeQuerier ) GetWorkspaceAgentLogSourcesByAgentIDs (_ context.Context , ids []uuid.UUID ) ([]database.WorkspaceAgentLogSource , error ) {
3075
3075
q .mutex .RLock ()
3076
3076
defer q .mutex .RUnlock ()
3077
3077
@@ -3121,7 +3121,7 @@ func (q *FakeQuerier) GetWorkspaceAgentMetadata(_ context.Context, workspaceAgen
3121
3121
return metadata , nil
3122
3122
}
3123
3123
3124
- func (q * FakeQuerier ) GetWorkspaceAgentScriptsByAgentIDs (ctx context.Context , ids []uuid.UUID ) ([]database.WorkspaceAgentScript , error ) {
3124
+ func (q * FakeQuerier ) GetWorkspaceAgentScriptsByAgentIDs (_ context.Context , ids []uuid.UUID ) ([]database.WorkspaceAgentScript , error ) {
3125
3125
q .mutex .RLock ()
3126
3126
defer q .mutex .RUnlock ()
3127
3127
@@ -4467,7 +4467,7 @@ func (q *FakeQuerier) InsertWorkspaceAgent(_ context.Context, arg database.Inser
4467
4467
return agent , nil
4468
4468
}
4469
4469
4470
- func (q * FakeQuerier ) InsertWorkspaceAgentLogSources (ctx context.Context , arg database.InsertWorkspaceAgentLogSourcesParams ) ([]database.WorkspaceAgentLogSource , error ) {
4470
+ func (q * FakeQuerier ) InsertWorkspaceAgentLogSources (_ context.Context , arg database.InsertWorkspaceAgentLogSourcesParams ) ([]database.WorkspaceAgentLogSource , error ) {
4471
4471
err := validateDatabaseType (arg )
4472
4472
if err != nil {
4473
4473
return nil , err
@@ -4554,7 +4554,7 @@ func (q *FakeQuerier) InsertWorkspaceAgentMetadata(_ context.Context, arg databa
4554
4554
return nil
4555
4555
}
4556
4556
4557
- func (q * FakeQuerier ) InsertWorkspaceAgentScripts (ctx context.Context , arg database.InsertWorkspaceAgentScriptsParams ) ([]database.WorkspaceAgentScript , error ) {
4557
+ func (q * FakeQuerier ) InsertWorkspaceAgentScripts (_ context.Context , arg database.InsertWorkspaceAgentScriptsParams ) ([]database.WorkspaceAgentScript , error ) {
4558
4558
err := validateDatabaseType (arg )
4559
4559
if err != nil {
4560
4560
return nil , err
0 commit comments