-
Notifications
You must be signed in to change notification settings - Fork 2
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
Local dev bugs #22
Local dev bugs #22
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
WalkthroughThis update introduces significant enhancements to the handling of UI elements and backend processes. The UI now includes a switch for stall detection and a new select menu for gate types. Backend improvements include enhanced signal handling, new attributes for gate type and stall detection in queries, and adjustments to the command execution and route handling mechanisms for better process management and flexibility. Changes
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review Details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (5)
- server/app/query/create/page.tsx (7 hunks)
- sidecar/app/command.py (1 hunks)
- sidecar/app/query/ipa.py (4 hunks)
- sidecar/app/routes/start.py (3 hunks)
- sidecar/cli/cli.py (2 hunks)
Additional comments not posted (12)
sidecar/app/command.py (1)
85-89
: Robust signal handling with process existence check.sidecar/app/routes/start.py (2)
42-43
: New parametersgate_type
andstall_detection
added tostart_ipa_helper
.
58-59
: Instantiation ofIPAHelperQuery
with new parameters.sidecar/cli/cli.py (2)
162-162
: Default value ofroot_path
set toNone
inrun_helper_sidecar
.
268-268
: Appending/tmp/sidecar/{role.value}
toroot_path
inrun_local_dev
.sidecar/app/query/ipa.py (5)
21-23
: Addition ofGateType
enum withCOMPACT
andDESCRIPTIVE
values.
164-165
: New attributesgate_type
andstall_detection
added toIPAHelperCompileStep
.
170-174
: Instantiation ofIPAHelperCompileStep
with new attributes.
186-187
: Usage ofgate_type
andstall_detection
inbuild_command
method.
399-400
: New attributesgate_type
andstall_detection
added toIPAHelperQuery
.server/app/query/create/page.tsx (2)
329-347
: Addition ofSwitch
component for stall detection.
322-327
: Addition ofSelectMenu
for selecting "Gate Type".
Summary by CodeRabbit
New Features
Enhancements
Bug Fixes
start_ipa_helper
function to include new parameters for gate type and stall detection, ensuring better integration and functionality.