8000 feat: support custom order of agent metadata by mtojek · Pull Request #12066 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

feat: support custom order of agent metadata #12066

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Feb 8, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix make gen
  • Loading branch information
mtojek committed Feb 8, 2024
commit ddf37c3421a0b740f01d5afc1f9a3fd0907d5554
4 changes: 4 additions & 0 deletions site/e2e/provisionerGenerated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ export interface Agent_Metadata {
script: string;
interval: number;
timeout: number;
order: number;
}

export interface Agent_EnvEntry {
Expand Down Expand Up @@ -557,6 +558,9 @@ export const Agent_Metadata = {
if (message.timeout !== 0) {
writer.uint32(40).int64(message.timeout);
}
if (message.order !== 0) {
writer.uint32(48).int64(message.order);
}
return writer;
},
};
Expand Down
0