Mehul Arora
Mehul Arora
- The fieldnorms function is implemented differently in the following places. https://github.com/quickwit-oss/tantivy/blob/main/src/schema/bytes_options.rs#L48 https://github.com/quickwit-oss/tantivy/blob/main/src/schema/numeric_options.rs#L74 https://github.com/quickwit-oss/tantivy/blob/main/src/schema/text_options.rs#L120 The implementation for BytesOptions and TextOptions should have `&& self.indexed` just like NumericOptions - Setter functions...
Suport for network ops is added through #228, we need support for fileops as well
If the pod being impersonated does not exist, mirrord panics like so: ``` mehula@mehul-machine:~/mirrord$ MIRRORD_AGENT_RUST_LOG=trace RUST_LOG=debug target/debug/mirrord exec -c --pod-name http-echo-deployment-77fddcdc49-6z22r node tests/node-e2e/app.js 2022-06-29T05:04:30.329750Z DEBUG reqwest::connect: starting new connection: https://version.mirrord.dev/...
With 2.2.0 release, we need e2e tests for the following functions: * [x] open * [ ] fopen * [ ] fdopen * [x] openat * [x] read * [...
https://github.com/metalbear-co/mirrord/blob/main/mirrord-layer/src/lib.rs#L63 The shared library constructor has two unwraps in it, it would be nicer if we could just print to stderr and exit gracefully instead of rust panic.
### Bug Description mirrord's VSCode extension fails to debug the local process. ### Steps to Reproduce - Add this configuration to your launch.json: ``` { "type": "lldb", "request": "launch", "name":...
My test has a signature like so: ```rs async fn test_mirror_http_traffic( #[future] service: EchoService, #[future] kube_client: Client, #[values(Application::PythonHTTP, Application::NodeHTTP, Application::GoHTTP)] application: Application, #[values(Agent::Ephemeral, Agent::Job)] agent: Agent, ) ``` And when...
Currently the CI runs all the specified tests whenever any file is modified. However, it would be desirable to run only formatting/documentation build related tests if the changes **only** take...
This PR will add support to impersonate deployments. Deployments can be represented as `deployment/sample_dep/container/abc` or simply `deployment/sample_dep` where the container would default to the first container. `--pod-name & --impersonated-container...` will...
### Bug Description getaddrinfo returns a linkedlist of resolved addresses and seems like when the request is sent to curl localhost:80, it is resolved by the agent into both ipv4...