Skip to content

Commit

Permalink
get reservations filtered on ip subnet or host
Browse files Browse the repository at this point in the history
  • Loading branch information
kthare10 committed Jul 13, 2024
1 parent 4285c58 commit cc8d38e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions fabric_cf/actor/db/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,8 @@ class Reservations(Base):
Index('idx_resid_state', rsv_resid, rsv_state)
Index('idx_slcid_state', rsv_slc_id, rsv_state)
Index('idx_graph_id_res_id', rsv_graph_node_id, rsv_resid)
Index('idx_host', host)
Index('idx_ip_subnet', ip_subnet)


class Slices(Base):
Expand Down

0 comments on commit cc8d38e

Please sign in to comment.