Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -189,5 +189,9 @@ ARG RUN_SH=grafana/packaging/docker/run.sh

COPY ${RUN_SH} /run.sh

# LOGZ.IO GRAFANA CHANGE :: Add unique file to avoid ECR tag limit

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

there's no ticket reference to this change?
where is this change coming from? 🤔

ARG VERSION
RUN echo "$VERSION" > /var/version.txt

USER "$GF_UID"
ENTRYPOINT [ "/run.sh" ]
ENTRYPOINT [ "/run.sh" ]
4 changes: 2 additions & 2 deletions public/app/features/playlist/ShareModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ export const ShareModal = ({ playlistUid, onDismiss }: Props) => {

const params: UrlQueryMap = {};
if (mode) {
params.kiosk = mode;
}
params.kiosk = mode.toString(); // LOGZ.IO GRAFANA CHANGE :: DEV-42761 fix playlist sharing url
}
if (autoFit) {
params.autofitpanels = true;
}
Expand Down
1 change: 1 addition & 0 deletions public/app/plugins/datasource/elasticsearch/datasource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1031,6 +1031,7 @@ export class ElasticDatasource
}

private getDatabaseVersionUncached(): Promise<SemVer | null> {
return Promise.resolve(null); // LOGZ.IO GRAFANA CHANGE :: DEV-46435-grafana-10-error-500-on-get-api-datasources-uid-uid-resources
// we want this function to never fail
const getDbVersionObservable = config.featureToggles.enableElasticsearchBackendQuerying
? from(this.getResourceRequest(''))
Expand Down