Skip to content

Commit

Permalink
Merge pull request #466 from devoxx/issue-463
Browse files Browse the repository at this point in the history
Fix #463 Use ChromaDB v0.6.2 instead of latest
  • Loading branch information
stephanj authored Jan 29, 2025
2 parents 42239ad + 13af282 commit 31b42da
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
public final class ChromaDockerService {
private static final Logger LOG = Logger.getInstance(ChromaDockerService.class);

private static final String CHROMA_IMAGE = "chromadb/chroma:latest";
private static final String CHROMA_IMAGE = "chromadb/chroma:0.6.2";
private static final String CONTAINER_NAME = "devoxx-genie-chromadb";

public static final String FAILED_TO_PULL_CHROMA_DB_IMAGE = "Failed to pull ChromaDB image: ";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public boolean isValid() {
return false;
}

this.message = "ChromaDB is running";
this.message = "ChromaDB v0.6.2 is running";
return true;

} catch (Exception e) {
Expand Down Expand Up @@ -114,4 +114,4 @@ public ValidatorType getCommand() {
public ValidationActionType getAction() {
return this.action;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ private void addProgressSection(@NotNull JPanel panel, @NotNull GridBagConstrain
JPanel progressPanel = new JPanel(new BorderLayout(5, 5));
progressPanel.add(progressLabel, BorderLayout.NORTH);
progressPanel.add(progressBar, BorderLayout.CENTER);
// Reset gridwidth to span across all columns
// Reset grid width to span across all columns
gbc.gridwidth = GridBagConstraints.REMAINDER;
// Allow the panel to expand horizontally
gbc.fill = GridBagConstraints.HORIZONTAL;
Expand Down Expand Up @@ -311,4 +311,4 @@ private void setupTable() {
actionColumn.setCellEditor(buttonEditor);
collectionsTable.setVisible(false);
}
}
}
1 change: 1 addition & 0 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
<h2>V0.4.13</h2>
<UL>
<LI>Feat #455 : Windows/Linux UI on-select issues (regression) by @stephanj</LI>
<LI>Fix #463 : Use ChromaDB v0.6.2 instead of latest by @stephanj</LI>
</UL>
<h2>V0.4.12</h2>
<UL>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#Wed Jan 29 13:26:07 CET 2025
#Wed Jan 29 13:48:51 CET 2025
version=0.4.13

0 comments on commit 31b42da

Please sign in to comment.