Skip to content

Commit

Permalink
Temporarily disable code gen up-to-date check
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Farr <tsfarr@amazon.com>
  • Loading branch information
Xtansia committed Aug 30, 2024
1 parent 4ccbab3 commit 3bc3ebf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/code-generation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ on:
jobs:
up_to_date:
name: Ensure Generated Code Is Up To Date
if: github.event_name == 'pull_request'
# if: github.event_name == 'pull_request'
if: false
runs-on: ubuntu-latest
steps:
- name: Checkout Java Client
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,6 @@
public class CodeGenerator {
private static final Logger LOGGER = LogManager.getLogger();
private static final OperationGroupMatcher OPERATION_MATCHER = none();
// private static final OperationGroupMatcher OPERATION_MATCHER = or(
// and(namespace(""), named("info")),
// and(namespace("ml"), not(named("search_models"))) // TODO: search_models is complex and ideally should re-use the search structures
// );

public static void main(String[] args) {
var inputOpt = Option.builder("i")
Expand Down

0 comments on commit 3bc3ebf

Please sign in to comment.